From 5b0af661b0b369a4edba71eb3c5d0a9ad81428ce Mon Sep 17 00:00:00 2001
From: Drew DeVault <sir@cmpwn.com>
Date: Sat, 14 May 2016 14:34:25 +0000
Subject: [PATCH] Revert "sway/container.c: fix segfault where view is assigned
 prematurely"

---
 sway/container.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/container.c b/sway/container.c
index 1a15aae1d..b49b32ee1 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;