Don’t re-initialize Xinerama on every configurenotify. This needs to be fixed properly.

next
Michael Stapelberg 2009-03-05 02:17:10 +01:00
parent 1343b77dbb
commit e4627bcaed
1 changed files with 4 additions and 1 deletions

View File

@ -360,7 +360,10 @@ int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_n
if (event->event == root) {
printf("reconfigure of the root window, need to xinerama\n");
xinerama_requery_screens(conn);
/* FIXME: Somehow, this is occuring too often. Therefore, we check for 0/0,
but is there a better way? */
if (event->x == 0 && event->y == 0)
xinerama_requery_screens(conn);
return 1;
}