From 7005a01d9cc9a48ccb1e1b0da3454290197e5b49 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Mon, 16 Sep 2024 08:13:25 -0700 Subject: [PATCH] fix(wm): hot reload cross boundary behaviour changes --- komorebi/src/static_config.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index bf3e2b78..f00cee6e 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -1213,6 +1213,10 @@ impl StaticConfig { wm.cross_monitor_move_behaviour = val; } + if let Some(val) = value.cross_boundary_behaviour { + wm.cross_boundary_behaviour = val; + } + if let Some(val) = value.unmanaged_window_operation_behaviour { wm.unmanaged_window_operation_behaviour = val; }