From 9a6f5e115d3ed53b146a09833ca306b641c46eaa Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 21 Apr 2014 21:06:18 -0400 Subject: [PATCH] Revert "wayland-stage: Use the C setter for cursor-visible" This reverts commit d1a31952de5dd582f4e6292a86377163d1209de3. Whoops, I did not mean to push this one. --- src/wayland/meta-wayland-stage.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wayland/meta-wayland-stage.c b/src/wayland/meta-wayland-stage.c index f48636433..97c264732 100644 --- a/src/wayland/meta-wayland-stage.c +++ b/src/wayland/meta-wayland-stage.c @@ -54,11 +54,12 @@ static void meta_wayland_stage_init (MetaWaylandStage *self) { clutter_stage_set_user_resizable (CLUTTER_STAGE (self), FALSE); - clutter_stage_set_cursor_visible (CLUTTER_STAGE (self), FALSE); } ClutterActor * 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); }