summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c
index 1a15aae1..b49b32ee 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -820,10 +820,10 @@ swayc_t *swayc_tabbed_stacked_parent(swayc_t *view) {
820 return NULL; 820 return NULL;
821 } 821 }
822 do { 822 do {
823 view = view->parent;
823 if (view->layout == L_TABBED || view->layout == L_STACKED) { 824 if (view->layout == L_TABBED || view->layout == L_STACKED) {
824 parent = view; 825 parent = view;
825 } 826 }
826 view = view->parent;
827 } while (view && view->type != C_WORKSPACE); 827 } while (view && view->type != C_WORKSPACE);
828 828
829 return parent; 829 return parent;