aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2018-03-31 11:13:20 -0400
committerBrian Ashworth <bosrsf04@gmail.com>2018-03-31 11:13:20 -0400
commitc901510e01f7648a549187b128ed9d0f9c5627eb (patch)
tree2f2b48ef6c0a2f06230e109f777aea5f45633b97
parent6a1a94b87c7e3e3c7145087c23024f9039a8a08c (diff)
Fixes back-and-forth name saving for non-empty ws
-rw-r--r--sway/tree/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index c629f1f1..de1bf159 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -351,7 +351,7 @@ bool workspace_switch(struct sway_container *workspace) {
}
struct sway_container *active_ws = focus;
if (active_ws->type != C_WORKSPACE) {
- container_parent(focus, C_WORKSPACE);
+ active_ws = container_parent(focus, C_WORKSPACE);
}
if (config->auto_back_and_forth