aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 902a521b..e2e58a77 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -626,7 +626,7 @@ void update_geometry(swayc_t *container) {
626 geometry.size.h -= (border_bottom + title_bar.size.h); 626 geometry.size.h -= (border_bottom + title_bar.size.h);
627 container->title_bar_geometry = title_bar; 627 container->title_bar_geometry = title_bar;
628 } else if (parent->layout == L_STACKED) { 628 } else if (parent->layout == L_STACKED) {
629 int i, y; 629 int i, y = 0;
630 for (i = 0; i < parent->children->length; ++i) { 630 for (i = 0; i < parent->children->length; ++i) {
631 swayc_t *view = parent->children->items[i]; 631 swayc_t *view = parent->children->items[i];
632 if (view == container) { 632 if (view == container) {