From 963905adcd000152e021babad7126c4d55590958 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 6 Apr 2013 11:09:06 -0400 Subject: [PATCH] runDialog: don't destroy on close It's a singleton like the endSessionDialog https://bugzilla.gnome.org/show_bug.cgi?id=697435 --- js/ui/runDialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js index 9d288d92a..7b753a77f 100644 --- a/js/ui/runDialog.js +++ b/js/ui/runDialog.js @@ -35,7 +35,8 @@ const RunDialog = new Lang.Class({ Extends: ModalDialog.ModalDialog, _init : function() { - this.parent({ styleClass: 'run-dialog' }); + this.parent({ styleClass: 'run-dialog', + destroyOnClose: false }); this._lockdownSettings = new Gio.Settings({ schema: LOCKDOWN_SCHEMA }); this._terminalSettings = new Gio.Settings({ schema: TERMINAL_SCHEMA });