Bugfix: Fix 'focus mode_toggle' on an empty workspace (Thanks BeF)
Fixes #487
This commit is contained in:
parent
3f147b77ab
commit
0848844f2d
|
@ -484,7 +484,7 @@ focus:
|
||||||
int to_focus = $2;
|
int to_focus = $2;
|
||||||
if ($2 == TOK_MODE_TOGGLE) {
|
if ($2 == TOK_MODE_TOGGLE) {
|
||||||
current = TAILQ_FIRST(&(ws->focus_head));
|
current = TAILQ_FIRST(&(ws->focus_head));
|
||||||
if (current->type == CT_FLOATING_CON)
|
if (current != NULL && current->type == CT_FLOATING_CON)
|
||||||
to_focus = TOK_TILING;
|
to_focus = TOK_TILING;
|
||||||
else to_focus = TOK_FLOATING;
|
else to_focus = TOK_FLOATING;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue