Skip to content

Commit 74e93e5

Browse files
alex-ds13LGUG2Z
authored andcommitted
fix(wm): ensure default CrossBoundaryBehaviour consistency
This commit fixes the default for `CrossBoundaryBehaviour` which was set to `Monitor` when loading a user configuration but was set to `Workspace` if starting from fresh without a user config. The docs also stated that this value was `Monitor` by default.
1 parent 86e7857 commit 74e93e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

komorebi/src/window_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ impl WindowManager {
438438
work_area_offset: None,
439439
window_management_behaviour: WindowManagementBehaviour::default(),
440440
cross_monitor_move_behaviour: MoveBehaviour::Swap,
441-
cross_boundary_behaviour: CrossBoundaryBehaviour::Workspace,
441+
cross_boundary_behaviour: CrossBoundaryBehaviour::Monitor,
442442
unmanaged_window_operation_behaviour: OperationBehaviour::Op,
443443
resize_delta: 50,
444444
focus_follows_mouse: None,

0 commit comments

Comments
 (0)