mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 15:33:13 +00:00
Fix gaps for views being incorrect
This commit is contained in:
parent
4397cff7bc
commit
250097d32b
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue