From 57eae1be4314caad4666bee52d0543f38da603b1 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 28 Feb 2013 10:43:39 -0500 Subject: [PATCH] main: register with session manager explicitly Mutter now makes session registration an explicit required step. This is so we can tell the session manager when we're ready to move on to the next phase. This commit calls the new Meta.register_with_session() api after we're initialized. https://bugzilla.gnome.org/show_bug.cgi?id=694876 --- js/ui/main.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/ui/main.js b/js/ui/main.js index 8b606cbf8..3a3f67425 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -168,6 +168,9 @@ function startSession() { // initiate logouts. EndSessionDialog.init(); + // We're ready for the session manager to move to the next phase + Meta.register_with_session(); + _startDate = new Date(); log('GNOME Shell started at ' + _startDate);