diff options
| author | uint <abhinav.prsai@gmail.com> | 2025-12-13 17:46:24 +0000 |
|---|---|---|
| committer | uint <abhinav.prsai@gmail.com> | 2025-12-13 17:46:24 +0000 |
| commit | f4ee512b3ed1684857925424500fb646815b6260 (patch) | |
| tree | 671695b0708808467babebe48c10a7814a2ad9c0 /src/sxwm.c | |
| parent | a92cb9ae52f09c56c461501ad6020a95878bb41e (diff) | |
fix fullscreen brokenness
finally remembered
Diffstat (limited to 'src/sxwm.c')
| -rw-r--r-- | src/sxwm.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -2633,17 +2633,13 @@ void tile(void) update_struts(); Client *head = workspaces[current_ws]; int total = 0; - Bool fullscreen_present = False; for (Client *c = head; c; c = c->next) { if (c->mapped && !c->floating && !c->fullscreen) total++; - - if (!c->floating && c->fullscreen) - fullscreen_present = True; } - if (total == 1 && fullscreen_present) + if (total == 0) return; if (monocle) { |
