summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Mykyta Holubakha <hilobakho@gmail.com>2016-06-21 20:38:06 +0300
committerLibravatar Mykyta Holubakha <hilobakho@gmail.com>2016-06-21 20:38:06 +0300
commitbfdda1505ec319b9ee812efa7059d646f7bea9d0 (patch)
tree01e6597b06f11bab6c6e905a3edc42430aa9b5ea /sway
parentMinor fix to warning messages (diff)
downloadsway-bfdda1505ec319b9ee812efa7059d646f7bea9d0.tar.gz
sway-bfdda1505ec319b9ee812efa7059d646f7bea9d0.tar.zst
sway-bfdda1505ec319b9ee812efa7059d646f7bea9d0.zip
Check if found ws is focused in new view handler
Fixes #714, by preventing change of focus from a window to the whole ws
Diffstat (limited to 'sway')
-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