From f5e58c500fc0e67f68e8c71e9750c00f51d63fac Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Mon, 21 May 2012 18:44:21 +0200 Subject: [PATCH] Modal stack: fix handling of destroyed actors Destroyed modal actors should be completely removed from the modal stack automatically, including leaving modality if needed. This allows for destroying modal dialogs without calling close(). https://bugzilla.gnome.org/show_bug.cgi?id=619955 --- js/ui/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/main.js b/js/ui/main.js index 501af0441..0b12d7577 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -683,7 +683,7 @@ function pushModal(actor, timestamp, options) { let actorDestroyId = actor.connect('destroy', function() { let index = _findModal(actor); if (index >= 0) - modalActorFocusStack.splice(index, 1); + popModal(actor); }); let curFocus = global.stage.get_key_focus(); let curFocusDestroyId;