summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 647f9771..e322c579 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -226,8 +226,8 @@ static bool handle_view_created(wlc_handle handle) {
226 // using newview as a temp storage location here, 226 // using newview as a temp storage location here,
227 // rather than adding yet another workspace var 227 // rather than adding yet another workspace var
228 newview = workspace_for_pid(pid); 228 newview = workspace_for_pid(pid);
229 if (newview && newview != current_ws) { 229 if (newview) {
230 focused = newview; 230 focused = get_focused_container(newview);
231 return_to_workspace = true; 231 return_to_workspace = true;
232 } 232 }
233 newview = NULL; 233 newview = NULL;