summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-08-05 07:48:23 -0400
committerLibravatar GitHub <noreply@github.com>2016-08-05 07:48:23 -0400
commit072984de9e5b74f6fcdb2350d508844b92ad7e7e (patch)
treef7545e019692feae1c8565f2b92d13c5c1a383be
parentMerge pull request #837 from acrisci/feature/log-events (diff)
parentFix switch to prev ws on handle_view_created (diff)
downloadsway-072984de9e5b74f6fcdb2350d508844b92ad7e7e.tar.gz
sway-072984de9e5b74f6fcdb2350d508844b92ad7e7e.tar.zst
sway-072984de9e5b74f6fcdb2350d508844b92ad7e7e.zip
Merge pull request #838 from thejan2009/bug/workspace-switch-bug
Fix switch to prev ws on handle_view_created
-rw-r--r--sway/handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 6d35f8a2..846d0005 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -410,7 +410,7 @@ static bool handle_view_created(wlc_handle handle) {
410 } 410 }
411 wlc_view_set_mask(handle, VISIBLE); 411 wlc_view_set_mask(handle, VISIBLE);
412 412
413 if (return_to_workspace && current_ws) { 413 if (return_to_workspace && current_ws != swayc_active_workspace()) {
414 // we were on one workspace, switched to another to add this view, 414 // we were on one workspace, switched to another to add this view,
415 // now let's return to where we were 415 // now let's return to where we were
416 workspace_switch(current_ws); 416 workspace_switch(current_ws);