]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Don’t use the workspace where focus is for deleting workspaces when switching...
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 19 Mar 2011 22:19:42 +0000 (23:19 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 19 Mar 2011 22:19:42 +0000 (23:19 +0100)
Fixes: #353
src/workspace.c

index 4e93b92e08079613bdbdc17fd487f22217e2e2cd..d09f02771e4c84924b66e1cb94b5c137708d24a4 100644 (file)
@@ -227,13 +227,6 @@ void workspace_show(const char *num) {
     }
     assert(old != NULL);
 
-    /* Check if the the currently focused con is on the same Output as the
-     * workspace we chose as 'old'. If not, use the workspace of the currently
-     * focused con */
-    Con *ws = con_get_workspace(focused);
-    if (ws && ws->parent != old->parent)
-        old = ws;
-
     /* enable fullscreen for the target workspace. If it happens to be the
      * same one we are currently on anyways, we can stop here. */
     workspace->fullscreen_mode = CF_OUTPUT;