Revert "wayland-stage: Use the C setter for cursor-visible"

This reverts commit d1a31952de5dd582f4e6292a86377163d1209de3.

Whoops, I did not mean to push this one.
This commit is contained in:
Jasper St. Pierre 2014-04-21 21:06:18 -04:00
parent 731e1ed74f
commit 9a6f5e115d

View File

@ -54,11 +54,12 @@ static void
meta_wayland_stage_init (MetaWaylandStage *self) meta_wayland_stage_init (MetaWaylandStage *self)
{ {
clutter_stage_set_user_resizable (CLUTTER_STAGE (self), FALSE); clutter_stage_set_user_resizable (CLUTTER_STAGE (self), FALSE);
clutter_stage_set_cursor_visible (CLUTTER_STAGE (self), FALSE);
} }
ClutterActor * ClutterActor *
meta_wayland_stage_new (void) meta_wayland_stage_new (void)
{ {
return g_object_new (META_TYPE_WAYLAND_STAGE, NULL); return g_object_new (META_TYPE_WAYLAND_STAGE,
"cursor-visible", FALSE,
NULL);
} }