2008-07-14 Tomas Frydrych <tf@openedhand.com>

* clutter/clutter-stage.c:
	    (clutter_stage_hide_cursor):
	    Fixed C&P bug that made it impossible to show cursor once hidden.

	    Stripped trailing whitespace.
This commit is contained in:
Tomas Frydrych 2008-07-14 08:49:22 +00:00
parent d5369aa9bf
commit 7a33510e0c
2 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,11 @@
2008-07-14 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-stage.c:
(clutter_stage_hide_cursor):
Fixed C&P bug that made it impossible to show cursor once hidden.
Stripped trailing whitespace.
2008-07-13 Matthew Allum <mallum@openedhand.com>
* clutter/x11/clutter-x11-texture-pixmap.c:

View File

@ -1100,7 +1100,7 @@ clutter_stage_hide_cursor (ClutterStage *stage)
iface = CLUTTER_STAGE_WINDOW_GET_IFACE (impl);
if (iface->set_cursor_visible)
{
priv->is_cursor_visible = TRUE;
priv->is_cursor_visible = FALSE;
iface->set_cursor_visible (impl, FALSE);