diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-10-17 22:25:53 +0100 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-10-17 22:25:53 +0100 |
| commit | 9f6385df20609b0592c2aa2577d39cd4240ebee0 (patch) | |
| tree | 7244fd88f77a8b725a761acd58a7b1b30a433d36 | |
| parent | 59645bbc2df69b06356e00648cfedececa860c71 (diff) | |
fix moveresize moving fullscreen windows
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1148,6 +1148,8 @@ moveresize(const Arg *arg) { return; if (selmon->lt[selmon->sellt]->arrange && !c->isfloating) return; + if (c->isfullscreen) + return; if (sscanf((char *)arg->v, "%d%c %d%c %d%c %d%c", &x, &xAbs, &y, &yAbs, &w, &wAbs, &h, &hAbs) != 8) return; |
