layout: Use ClutterActor.background-color instead of ClutterStage.color

The latter is deprecated.
This commit is contained in:
Jasper St. Pierre 2014-06-27 10:50:25 -04:00
parent 0b92cd0772
commit ec288d0e68

View File

@ -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' });