From: Michael Stapelberg Date: Fri, 21 Jan 2011 21:09:04 +0000 (+0100) Subject: bugfix: you can’t unfullscreen workspaces (Thanks Merovius) X-Git-Tag: tree-pr2~110 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ad95d5bb1febf068f782dc43264c7db3e0d1b4e1;p=i3%2Fi3 bugfix: you can’t unfullscreen workspaces (Thanks Merovius) --- diff --git a/src/con.c b/src/con.c index b151d297..82574b34 100644 --- a/src/con.c +++ b/src/con.c @@ -406,6 +406,12 @@ void con_fix_percent(Con *con, int action) { */ void con_toggle_fullscreen(Con *con) { Con *workspace, *fullscreen; + + if (con->type == CT_WORKSPACE) { + DLOG("You cannot make a workspace fullscreen.\n"); + return; + } + DLOG("toggling fullscreen for %p / %s\n", con, con->name); if (con->fullscreen_mode == CF_NONE) { /* 1: check if there already is a fullscreen con */