From f54b96c3277a7dbde04daccb9edbb9a1e40f7bda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 5 Sep 2023 12:55:56 +0200 Subject: [PATCH] auto-move: Fix signal name The functionality is still broken for wayland windows that use xdg-activation, because the workspace information from the startup sequence is handled later. But at least it's a baby step towards a fix. Part-of: --- extensions/auto-move-windows/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/auto-move-windows/extension.js b/extensions/auto-move-windows/extension.js index bb48802d..06a75fe1 100644 --- a/extensions/auto-move-windows/extension.js +++ b/extensions/auto-move-windows/extension.js @@ -50,7 +50,7 @@ class WindowMover { .map(id => this._appSystem.lookup_app(id)) .filter(app => app && !this._appData.has(app)); addedApps.forEach(app => { - app.connectObject('window-changed', + app.connectObject('windows-changed', this._appWindowsChanged.bind(this), this); this._appData.set(app, {windows: app.get_windows()}); });