Hi Ethan,

I'm still unable to reproduce the issue, but I am curious, does this fix things? :-)

diff --git a/dwm.c b/dwm.c
index 0fc328a..f2a10c0 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1061,6 +1061,7 @@ manage(Window w, XWindowAttributes *wa)
        XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
        configure(c); /* propagates border_width, if size doesn't change */
        updatewindowtype(c);
+       updatesizehints(c);
        updatewmhints(c);
        XSelectInput(dpy, w, 
EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
        grabbuttons(c, 0);

My guess is that the pinentry that you're using relies on early c->isfixed logic, whereas the one Sebastian and I are using relies on WM_TRANSIENT_FOR, so the issue I reported and the one you reported have different causes, despite having different symptoms.

If this fixes it, please let me know and I'll send it as a proper patch.

Thanks,

Chris

Reply via email to