From 151c699f5c7e172c9f2478b753eb0b7ed74310e2 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 4 Dec 2012 18:32:59 -0500 Subject: [PATCH] EndSessionDialog: Add a Close method When there are multiple sessions, we may get a polkit dialog in response to clicking 'Reboot' in the end session dialog. If the polkit dialog gets canceled or otherwise ends unsuccessfully, we are left with the lightbox that the end session dialog puts up when 'Reboot' is clicked. To remove the lightbox and make the session fully functional again, gnome-session will call Close. https://bugzilla.gnome.org/show_bug.cgi?id=688915 --- js/ui/endSessionDialog.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js index 57a7dcdb3..59fbae295 100644 --- a/js/ui/endSessionDialog.js +++ b/js/ui/endSessionDialog.js @@ -50,6 +50,7 @@ const EndSessionDialogIface = + @@ -488,5 +489,9 @@ const EndSessionDialog = new Lang.Class({ invocation.return_value(null); this.disconnect(signalId); })); + }, + + Close: function(parameters, invocation) { + this.close(); } });