summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index b38f05a6..c5aee4aa 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -198,11 +198,12 @@ static bool handle_view_created(wlc_handle handle) {
198 if (pid) { 198 if (pid) {
199 // using newview as a temp storage location here, 199 // using newview as a temp storage location here,
200 // rather than adding yet another workspace var 200 // rather than adding yet another workspace var
201 if ((newview = workspace_for_pid(pid))) { 201 newview = workspace_for_pid(pid);
202 if (newview && newview != current_ws) {
202 focused = newview; 203 focused = newview;
203 newview = NULL;
204 return_to_workspace = true; 204 return_to_workspace = true;
205 } 205 }
206 newview = NULL;
206 } 207 }
207 } 208 }
208 209