From ec288d0e687ee11c22fa8cbe1e59c2e5e156dc6e Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 27 Jun 2014 10:50:25 -0400 Subject: [PATCH] layout: Use ClutterActor.background-color instead of ClutterStage.color The latter is deprecated. --- js/ui/layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/layout.js b/js/ui/layout.js index cb838269e..faa10f601 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -163,7 +163,7 @@ const LayoutManager = new Lang.Class({ // Normally, the stage is always covered so Clutter doesn't need to clear // it; however it becomes visible during the startup animation // See the comment below for a longer explanation - global.stage.color = DEFAULT_BACKGROUND_COLOR; + global.stage.background_color = DEFAULT_BACKGROUND_COLOR; // Set up stage hierarchy to group all UI actors under one container. this.uiGroup = new Shell.GenericContainer({ name: 'uiGroup' });