From dd577c0eb32ad73476edfca15c05b813b2c9ab31 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Sun, 2 Mar 2025 13:49:06 -0800 Subject: [PATCH] fix(wm): preserve resize dimensions on offset toggle This commit ensures that the resize dimensions will be reserved for other monitors and workspaces when the toggle-window-based-work-area-offset command is used. --- komorebi/src/process_command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komorebi/src/process_command.rs b/komorebi/src/process_command.rs index d7d799d3..b1149f44 100644 --- a/komorebi/src/process_command.rs +++ b/komorebi/src/process_command.rs @@ -1533,7 +1533,7 @@ impl WindowManager { !workspace.apply_window_based_work_area_offset(), ); - self.retile_all(false)?; + self.retile_all(true)?; } SocketMessage::QuickSave => { let workspace = self.focused_workspace()?;