bugfix: you can’t unfullscreen workspaces (Thanks Merovius)

This commit is contained in:
Michael Stapelberg 2011-01-21 22:09:04 +01:00
parent cbf4fcb9b5
commit ad95d5bb1f
1 changed files with 6 additions and 0 deletions

View File

@ -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 */