From 73671c6c58c3d2e6b3c1c3d2fb349aa625ddf371 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Fri, 20 May 2022 15:26:09 +0200 Subject: [PATCH] tree: set workspace output after moving workspace to re-connected output --- src/tasks/connector.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tasks/connector.rs b/src/tasks/connector.rs index d58c702b..01cb7fa5 100644 --- a/src/tasks/connector.rs +++ b/src/tasks/connector.rs @@ -154,6 +154,7 @@ impl ConnectorHandler { } } for ws in ws_to_move { + ws.output.set(on.clone()); on.workspaces.add_last_existing(&ws); if ws.visible_on_desired_output.get() && on.workspace.get().is_none() { on.show_workspace(&ws);