1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-08 00:06:32 +02:00

Fix gaps for views being incorrect

This commit is contained in:
Drew DeVault 2015-11-12 08:02:39 -05:00
parent 4397cff7bc
commit 250097d32b
2 changed files with 4 additions and 1 deletions

View File

@ -105,7 +105,7 @@ static void config_defaults(struct sway_config *config) {
config->seamless_mouse = true;
config->reading = false;
config->edge_gaps = false;
config->edge_gaps = true;
config->gaps_inner = 0;
config->gaps_outer = 0;
}

View File

@ -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: