From: Michael Stapelberg Date: Thu, 25 Mar 2010 17:07:40 +0000 (+0100) Subject: Bugfix: Correctly switch workspace when using the "jump" command (Thanks fallen) X-Git-Tag: 3.e~6^2~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=469f22caeb3f146c268cd165f3537431ca14aa48;p=i3%2Fi3 Bugfix: Correctly switch workspace when using the "jump" command (Thanks fallen) --- diff --git a/src/commands.c b/src/commands.c index e7ebb946..b601c1c0 100644 --- a/src/commands.c +++ b/src/commands.c @@ -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); }