diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2012-07-06 14:18:01 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2012-07-06 14:18:01 +0000 |
commit | 9a769cec8180883794c96a1c0c9a9a7021428296 (patch) | |
tree | a9517ec9e5b7bc57593b989fef82f6c23fc1ef9e /app/cwm/xevents.c | |
parent | 4bab8a2d804d192dd94c6ffe752b092f05797af9 (diff) |
querying for Xinerama should be done per display, not per screen, so
move chuck to display init; allows some shuffling to occur limiting
screen_init_xinerama()'s scope while keeping order intact.
Diffstat (limited to 'app/cwm/xevents.c')
-rw-r--r-- | app/cwm/xevents.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c index 4c2c84842..9480c7de6 100644 --- a/app/cwm/xevents.c +++ b/app/cwm/xevents.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: xevents.c,v 1.62 2012/07/05 17:35:13 okan Exp $ + * $OpenBSD: xevents.c,v 1.63 2012/07/06 14:18:00 okan Exp $ */ /* @@ -366,7 +366,6 @@ xev_handle_randr(XEvent *ee) if (sc->which == (u_int)i) { XRRUpdateConfiguration(ee); screen_update_geometry(sc); - screen_init_xinerama(sc); } } } |