Fix switch to prev ws on handle_view_created

Switching back to original workspace should be done only if workspace
was switched while appending new view.
This commit is contained in:
D.B 2016-08-05 10:43:54 +02:00
parent 2a8cc8645b
commit aa292db8d1
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ static bool handle_view_created(wlc_handle handle) {
}
wlc_view_set_mask(handle, VISIBLE);
if (return_to_workspace && current_ws) {
if (return_to_workspace && current_ws != swayc_active_workspace()) {
// we were on one workspace, switched to another to add this view,
// now let's return to where we were
workspace_switch(current_ws);