From: Helgi Kristvin Sigurbjarnarson Date: Fri, 19 Mar 2010 00:18:25 +0000 (+0000) Subject: Bugfix: Take window out of fullscreen before entering floating mode. X-Git-Tag: 3.e~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0b9abd1eb4cef1936c17818539e07e85ae61ae9b;p=i3%2Fi3 Bugfix: Take window out of fullscreen before entering floating mode. --- diff --git a/src/commands.c b/src/commands.c index 56f1ab27..ee7fe085 100644 --- a/src/commands.c +++ b/src/commands.c @@ -1103,6 +1103,9 @@ void parse_command(xcb_connection_t *conn, const char *command) { Workspace *ws = last_focused->workspace; + if(last_focused->fullscreen) + client_leave_fullscreen(conn, last_focused); + toggle_floating_mode(conn, last_focused, false); /* delete all empty columns/rows */ cleanup_table(conn, ws);