aboutsummaryrefslogtreecommitdiffstats
path: root/sway/focus.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/focus.c')
-rw-r--r--sway/focus.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sway/focus.c b/sway/focus.c
index ca56de4b..6911ac00 100644
--- a/sway/focus.c
+++ b/sway/focus.c
@@ -95,6 +95,8 @@ bool set_focused_container(swayc_t *c) {
95 if (locked_container_focus || !c || !c->parent) { 95 if (locked_container_focus || !c || !c->parent) {
96 return false; 96 return false;
97 } 97 }
98 swayc_t *active_ws = swayc_active_workspace();
99
98 swayc_log(L_DEBUG, c, "Setting focus to %p:%ld", c, c->handle); 100 swayc_log(L_DEBUG, c, "Setting focus to %p:%ld", c, c->handle);
99 101
100 // Get workspace for c, get that workspaces current focused container. 102 // Get workspace for c, get that workspaces current focused container.
@@ -133,6 +135,10 @@ bool set_focused_container(swayc_t *c) {
133 } 135 }
134 } 136 }
135 } 137 }
138
139 if (active_ws != workspace) {
140 ipc_event_workspace(active_ws, workspace);
141 }
136 return true; 142 return true;
137} 143}
138 144