diff options
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c index b49b32ee..1a15aae1 100644 --- a/sway/container.c +++ b/sway/container.c @@ -820,10 +820,10 @@ swayc_t *swayc_tabbed_stacked_parent(swayc_t *view) { return NULL; } do { - view = view->parent; if (view->layout == L_TABBED || view->layout == L_STACKED) { parent = view; } + view = view->parent; } while (view && view->type != C_WORKSPACE); return parent; |