diff --git a/js/ui/layout.js b/js/ui/layout.js index 4d5dd49c4..d4192151a 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -573,6 +573,7 @@ const LayoutManager = new Lang.Class({ }, startupAnimation: function() { + global.stage.show(); if (Main.sessionMode.isGreeter) this._startupAnimationGreeter(); else diff --git a/js/ui/main.js b/js/ui/main.js index ee44dcfe7..8b606cbf8 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -89,6 +89,9 @@ function start() { global.logError = window.log; global.log = window.log; + // Hide the stage until we're ready for it + global.stage.hide(); + // Chain up async errors reported from C global.connect('notify-error', function (global, msg, detail) { notifyError(msg, detail); });