diff options
| author | bakkeby <[email protected]> | 2020-09-10 16:55:28 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-09-10 16:55:28 +0200 |
| commit | 95c3014bd563ce05ccd5b7814f58b67262b9502d (patch) | |
| tree | 343b1f41fdf8e237cd50deb9e43bb204fe5e5e59 /dwm.c | |
| parent | d91db5cd653507f67f1c188ce8440783e88518a8 (diff) | |
| download | dwm-flexipatch-95c3014bd563ce05ccd5b7814f58b67262b9502d.tar.gz dwm-flexipatch-95c3014bd563ce05ccd5b7814f58b67262b9502d.zip | |
fakefullscreen: prevent focus from drifting away from client when going from fullscreen to fake fullscreen
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2536,7 +2536,7 @@ resizeclient(Client *c, int x, int y, int w, int h) #endif // MONOCLE_LAYOUT ) #if FAKEFULLSCREEN_CLIENT_PATCH - && (c->fakefullscreen == 1 || !c->isfullscreen) && c->fakefullscreen + && (c->fakefullscreen == 1 || !c->isfullscreen) #else && !c->isfullscreen #endif // FAKEFULLSCREEN_CLIENT_PATCH |
