clients (emacs) freaking out, cuz they send back a configure every
time they receive this event, which resends them this event... etc.
*/
- if ((moved || resized) && (!user || final)) {
+ if ((!user && moved) || (user && final)) {
XEvent event;
event.type = ConfigureNotify;
event.xconfigure.display = ob_display;
event.xconfigure.override_redirect = FALSE;
XSendEvent(event.xconfigure.display, event.xconfigure.window,
FALSE, StructureNotifyMask, &event);
+ g_message ("SENT CONFIG");
}
}
}