Rename deco.c ssd.c

This commit is contained in:
Johan Malm 2021-03-20 14:41:39 +00:00
parent 15ffee79f9
commit a262b729df
9 changed files with 68 additions and 68 deletions

View file

@ -124,7 +124,7 @@ want_deco(struct view *view)
static void
top_left_edge_boundary_check(struct view *view)
{
struct wlr_box deco = deco_max_extents(view);
struct wlr_box deco = ssd_max_extents(view);
if (deco.x < 0) {
view->x -= deco.x;
}
@ -148,7 +148,7 @@ map(struct view *view)
view->surface = view->xwayland_surface->surface;
view->server_side_deco = want_deco(view);
view->margin = deco_thickness(view);
view->margin = ssd_thickness(view);
top_left_edge_boundary_check(view);