commit a2bb2801724d9404529617f1b2b300033e2a8c8b
parent 136387144cdcaa65c693fb4ffeed437bdd85235f
Author: Mykyta Holubakha <hilobakho@gmail.com>
Date: Mon, 27 Jun 2016 21:36:27 +0300
Spawn new views to target ws's focused container
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/handlers.c b/sway/handlers.c
@@ -226,8 +226,8 @@ static bool handle_view_created(wlc_handle handle) {
// using newview as a temp storage location here,
// rather than adding yet another workspace var
newview = workspace_for_pid(pid);
- if (newview && newview != current_ws) {
- focused = newview;
+ if (newview) {
+ focused = get_focused_container(newview);
return_to_workspace = true;
}
newview = NULL;