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:
Emmanuele Bassi 2007-11-26 12:10:20 +00:00
parent a02e20a14a
commit 69bc9516f9
2 changed files with 8 additions and 2 deletions

View File

@ -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> 2007-11-26 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.c: * clutter/clutter-actor.c:

View File

@ -308,7 +308,7 @@ clutter_stage_x11_set_cursor_visible (ClutterStage *stage,
if (show_cursor) if (show_cursor)
{ {
#if 0 /* HAVE_XFIXES */ #if HAVE_XFIXES
XFixesShowCursor (stage_x11->xdpy, stage_x11->xwin); XFixesShowCursor (stage_x11->xdpy, stage_x11->xwin);
#else #else
XUndefineCursor (stage_x11->xdpy, stage_x11->xwin); XUndefineCursor (stage_x11->xdpy, stage_x11->xwin);
@ -316,7 +316,7 @@ clutter_stage_x11_set_cursor_visible (ClutterStage *stage,
} }
else else
{ {
#if 0 /* HAVE_XFIXES */ #if HAVE_XFIXES
XFixesHideCursor (stage_x11->xdpy, stage_x11->xwin); XFixesHideCursor (stage_x11->xdpy, stage_x11->xwin);
#else #else
XColor col; XColor col;