mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
2007-11-26 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/x11/clutter-stage-x11.c: (clutter_stage_x11_set_cursor_visible): Restore the XFixes usage, as it now seems to be have been fixed.
This commit is contained in:
parent
a02e20a14a
commit
69bc9516f9
@ -1,3 +1,9 @@
|
||||
2007-11-26 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/x11/clutter-stage-x11.c:
|
||||
(clutter_stage_x11_set_cursor_visible): Restore the XFixes usage,
|
||||
as it now seems to be have been fixed.
|
||||
|
||||
2007-11-26 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.c:
|
||||
|
@ -308,7 +308,7 @@ clutter_stage_x11_set_cursor_visible (ClutterStage *stage,
|
||||
|
||||
if (show_cursor)
|
||||
{
|
||||
#if 0 /* HAVE_XFIXES */
|
||||
#if HAVE_XFIXES
|
||||
XFixesShowCursor (stage_x11->xdpy, stage_x11->xwin);
|
||||
#else
|
||||
XUndefineCursor (stage_x11->xdpy, stage_x11->xwin);
|
||||
@ -316,7 +316,7 @@ clutter_stage_x11_set_cursor_visible (ClutterStage *stage,
|
||||
}
|
||||
else
|
||||
{
|
||||
#if 0 /* HAVE_XFIXES */
|
||||
#if HAVE_XFIXES
|
||||
XFixesHideCursor (stage_x11->xdpy, stage_x11->xwin);
|
||||
#else
|
||||
XColor col;
|
||||
|
Loading…
Reference in New Issue
Block a user