diff options
author | Drew DeVault <[email protected]> | 2015-11-12 08:02:39 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-11-12 08:02:39 -0500 |
commit | 250097d32b7503b5a3fbb14b4582534ae3957035 (patch) | |
tree | bf91de67850abdce884a2aa03c6b727031ca73d3 /sway/layout.c | |
parent | 4397cff7bcef77e7bd1b1ac9b27aef74e44fa50d (diff) |
Fix gaps for views being incorrect
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/layout.c b/sway/layout.c index 3bc297a6..fe7d820a 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -398,6 +398,9 @@ static void arrange_windows_r(swayc_t *container, double width, double height) { height = container->height; } + sway_log(L_DEBUG, "Arranging layout for %p %s %fx%f+%f,%f", container, + container->name, container->width, container->height, container->x, container->y); + int x = 0, y = 0; switch (container->type) { case C_ROOT: |