]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Correctly switch workspace when using the "jump" command (Thanks fallen)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 25 Mar 2010 17:07:40 +0000 (18:07 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 25 Mar 2010 17:07:40 +0000 (18:07 +0100)
src/commands.c

index e7ebb94605d28bf75f02abebbbccf66cfaba7312..b601c1c035a96af2d37a2e01043bcf42e3a0a0c3 100644 (file)
@@ -721,6 +721,7 @@ static void jump_to_window(xcb_connection_t *conn, const char *arguments) {
         }
 
         free(classtitle);
+        workspace_show(conn, client->workspace->num + 1);
         set_focus(conn, client, true);
 }