diff options
| author | bakkeby <[email protected]> | 2020-09-11 17:33:15 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-09-11 17:33:15 +0200 |
| commit | c3e59100804bbedbc784a8722548d1a71f499334 (patch) | |
| tree | 5b0301b125497b3f1100946adb23c302fd36f7c4 | |
| parent | 9f64260f0a47b8346c00f1678f204071cb3fd646 (diff) | |
| download | dwm-flexipatch-c3e59100804bbedbc784a8722548d1a71f499334.tar.gz dwm-flexipatch-c3e59100804bbedbc784a8722548d1a71f499334.zip | |
swallow: no good reason to call arrange if a client window is being swallowed
| -rw-r--r-- | dwm.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2216,8 +2216,11 @@ manage(Window w, XWindowAttributes *wa) #if SWALLOW_PATCH if (term) swallow(term, c); - #endif // SWALLOW_PATCH + else + arrange(c->mon); + #else arrange(c->mon); + #endif // SWALLOW_PATCH focus(NULL); } |
