From 69bc9516f977277801e8f8b679e456a206030818 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 26 Nov 2007 12:10:20 +0000 Subject: [PATCH] 2007-11-26 Emmanuele Bassi * 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. --- ChangeLog | 6 ++++++ clutter/x11/clutter-stage-x11.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7cb2aa8f6..2b68b1011 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-11-26 Emmanuele Bassi + + * 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 * clutter/clutter-actor.c: diff --git a/clutter/x11/clutter-stage-x11.c b/clutter/x11/clutter-stage-x11.c index f891b148d..bd26d0c1f 100644 --- a/clutter/x11/clutter-stage-x11.c +++ b/clutter/x11/clutter-stage-x11.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;