diff options
| author | Luke Smith <[email protected]> | 2022-10-18 18:23:56 -0400 |
|---|---|---|
| committer | Luke Smith <[email protected]> | 2022-10-18 18:23:56 -0400 |
| commit | eec78faa7c84f771b477f502f69cdbde116da985 (patch) | |
| tree | 52e9c4e1f26e9e8f1cc8e2078ce8371fc577e2e7 | |
| parent | Merge pull request #217 from kronikpillow/merge (diff) | |
| download | seiwm-eec78faa7c84f771b477f502f69cdbde116da985.tar.xz seiwm-eec78faa7c84f771b477f502f69cdbde116da985.zip | |
fix swallow flicker, close #210
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1302,10 +1302,10 @@ manage(Window w, XWindowAttributes *wa) if (c->mon == selmon) unfocus(selmon->sel, 0); c->mon->sel = c; - arrange(c->mon); XMapWindow(dpy, c->win); if (term) swallow(term, c); + arrange(c->mon); focus(NULL); } |