summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Donnie West <me@donniewest.com>2018-08-15 21:49:40 -0500
committerLibravatar Donnie West <me@donniewest.com>2018-08-16 18:52:40 -0500
commita9433cbded6249936047e580e98e113432925e49 (patch)
tree83f8edec1482673a1ac26b02ea4bfcde014fed99 /sway
parentMerge pull request #2458 from RyanDwyer/cleanup-transactions (diff)
downloadsway-a9433cbded6249936047e580e98e113432925e49.tar.gz
sway-a9433cbded6249936047e580e98e113432925e49.tar.zst
sway-a9433cbded6249936047e580e98e113432925e49.zip
When the workspace is focused, return it instead of checking parent
Diffstat (limited to 'sway')
-rw-r--r--sway/tree/workspace.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index cd2a7a04..e7383de0 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -258,7 +258,8 @@ struct sway_container *workspace_by_name(const char *name) {
258 struct sway_container *current_workspace = NULL, *current_output = NULL; 258 struct sway_container *current_workspace = NULL, *current_output = NULL;
259 struct sway_container *focus = seat_get_focus(seat); 259 struct sway_container *focus = seat_get_focus(seat);
260 if (focus) { 260 if (focus) {
261 current_workspace = container_parent(focus, C_WORKSPACE); 261 current_workspace = focus->type == C_WORKSPACE ?
262 focus : container_parent(focus, C_WORKSPACE);
262 current_output = container_parent(focus, C_OUTPUT); 263 current_output = container_parent(focus, C_OUTPUT);
263 } 264 }
264 265