summaryrefslogtreecommitdiffstats
path: root/sway/handlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 6c6d0e60..3cc5cf3e 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -220,6 +220,10 @@ static bool handle_view_created(wlc_handle handle) {
220 // refocus in-between command lists 220 // refocus in-between command lists
221 set_focused_container(newview); 221 set_focused_container(newview);
222 } 222 }
223 swayc_t *workspace = swayc_parent_by_type(focused, C_WORKSPACE);
224 if (workspace && workspace->fullscreen) {
225 set_focused_container(workspace->fullscreen);
226 }
223 } else { 227 } else {
224 swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT); 228 swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT);
225 wlc_handle *h = malloc(sizeof(wlc_handle)); 229 wlc_handle *h = malloc(sizeof(wlc_handle));