Fix reporting of non-root X11 window positions

Fixes #517.
master
Camilla Berglund ago%!(EXTRA string=9 years)
parent e51e27fcab
commit 6494da3101
  1. 3
      src/x11_window.c

@ -1114,6 +1114,9 @@ static void processEvent(XEvent *event)
case ConfigureNotify:
{
if (!window->x11.overrideRedirect && !event->xany.send_event)
return;
if (event->xconfigure.width != window->x11.width ||
event->xconfigure.height != window->x11.height)
{

Loading…
Cancel
Save