From 00fbe94742d83026e2847b974d4d3567e8680bba Mon Sep 17 00:00:00 2001 From: speediegq Date: Sat, 8 Oct 2022 01:16:37 +0200 Subject: [PATCH] Fix: Swallow patch flicker --- speedwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speedwm.c b/speedwm.c index 4fa2931..c150842 100644 --- a/speedwm.c +++ b/speedwm.c @@ -3084,11 +3084,11 @@ manage(Window w, XWindowAttributes *wa) if (c->mon == selmon) unfocus(selmon->sel, 0); c->mon->sel = c; - arrange(c->mon); if (!HIDDEN(c)) XMapWindow(dpy, c->win); if (term) swallow(term, c); + arrange(c->mon); if (focusspawn && !warpcursor) { focus(c); // Auto focus next spawned window } else {