From b4678a1cee55ecc029879762f53ce29504aa3957 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 19 Feb 2013 20:31:56 -0500 Subject: [PATCH] layout: Clean up consoleBackgroundGroup We shouldn't leave a reference to a destroyed actor just hanging around. https://bugzilla.gnome.org/show_bug.cgi?id=694227 --- js/ui/layout.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/layout.js b/js/ui/layout.js index 994d79c30..4d5dd49c4 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -607,6 +607,8 @@ const LayoutManager = new Lang.Class({ global.stage_input_mode = Shell.StageInputMode.NORMAL; this._consoleBackgroundGroup.destroy(); + this._consoleBackgroundGroup = null; + this._startingUp = false; this.trayBox.show();