aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/config.c2
-rw-r--r--sway/layout.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 20e4919d..0b25ee60 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -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;
}
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: