mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
add XFlush() after setting cursor, #149413
2004-08-07 Havoc Pennington <hp@redhat.com> * src/screen.c (meta_screen_set_cursor): add XFlush() after setting cursor, #149413
This commit is contained in:
parent
c127a4691c
commit
7bcc485701
@ -1,3 +1,8 @@
|
|||||||
|
2004-08-07 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
|
* src/screen.c (meta_screen_set_cursor): add XFlush() after
|
||||||
|
setting cursor, #149413
|
||||||
|
|
||||||
2004-08-06 Elijah Newren <newren@math.utah.edu>
|
2004-08-06 Elijah Newren <newren@math.utah.edu>
|
||||||
|
|
||||||
* src/display.c (event_callback): Focusing a window upon unshowing
|
* src/display.c (event_callback): Focusing a window upon unshowing
|
||||||
|
@ -1123,6 +1123,7 @@ meta_screen_set_cursor (MetaScreen *screen,
|
|||||||
|
|
||||||
xcursor = meta_display_create_x_cursor (screen->display, cursor);
|
xcursor = meta_display_create_x_cursor (screen->display, cursor);
|
||||||
XDefineCursor (screen->display->xdisplay, screen->xroot, xcursor);
|
XDefineCursor (screen->display->xdisplay, screen->xroot, xcursor);
|
||||||
|
XFlush (screen->display->xdisplay);
|
||||||
XFreeCursor (screen->display->xdisplay, xcursor);
|
XFreeCursor (screen->display->xdisplay, xcursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user