From c4be0636f73ca640d303440b853825047f036e63 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Wed, 14 Jun 2023 07:49:45 -0700 Subject: [PATCH] fix(wm): update border on cycle-move This commit ensures that the active window border is updated when the cycle-move command is called. fix #467 --- komorebi/src/process_command.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/komorebi/src/process_command.rs b/komorebi/src/process_command.rs index 74792995..1a30547b 100644 --- a/komorebi/src/process_command.rs +++ b/komorebi/src/process_command.rs @@ -1178,6 +1178,7 @@ impl WindowManager { | SocketMessage::FocusWindow(_) | SocketMessage::InvisibleBorders(_) | SocketMessage::WorkAreaOffset(_) + | SocketMessage::CycleMoveWindow(_) | SocketMessage::MoveWindow(_) => { let foreground = WindowsApi::foreground_window()?; let foreground_window = Window { hwnd: foreground };