Merge pull request #656 from SirCmpwn/revert-650-segfault

Revert "sway/container.c: fix segfault where view is assigned prematurely"
master
Drew DeVault 9 years ago
commit 6780aa34fc

@ -820,10 +820,10 @@ swayc_t *swayc_tabbed_stacked_parent(swayc_t *view) {
return NULL; return NULL;
} }
do { do {
view = view->parent;
if (view->layout == L_TABBED || view->layout == L_STACKED) { if (view->layout == L_TABBED || view->layout == L_STACKED) {
parent = view; parent = view;
} }
view = view->parent;
} while (view && view->type != C_WORKSPACE); } while (view && view->type != C_WORKSPACE);
return parent; return parent;

Loading…
Cancel
Save