From 7f4db052a0b36f5409baac4f80c58550b9689d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Mon, 15 Aug 2022 18:23:27 +0200 Subject: [PATCH] dialog: Remove incorrect disconnectObject() It was added, as there was a previous signal disconnect in this function, but it happened to be dead code, and the disconnectObject() call was added in error. Remove it. Fixes: 26235bbe5433c48b81bd3917aaf9ef14ff1929b2 Part-of: --- js/ui/dialog.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/ui/dialog.js b/js/ui/dialog.js index 1ae27a134..414a3e4c7 100644 --- a/js/ui/dialog.js +++ b/js/ui/dialog.js @@ -60,8 +60,6 @@ class Dialog extends St.Widget { } makeInactive() { - this._parentActor.disconnectObject(this); - this.buttonLayout.get_children().forEach(c => c.set_reactive(false)); }