mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-09-17 07:11:22 +02:00
feat(config): update border opts, add deprecations
This commit includes backwards-compatible renames of active_window_border_offset and active_window_border_width to border_offset and border_width respectively. Since the invisible window border adjustments were removed in #678, the invisible window borders set by the OS can now also be adjusted via border_offset and border_width, which is the primary reason for the rename. invisible_borders has been marked as deprecated and the previously deprecated alt_focus_hack option has been removed.
This commit is contained in:
@@ -205,7 +205,6 @@ pub static DEFAULT_CONTAINER_PADDING: AtomicI32 = AtomicI32::new(10);
|
||||
pub static INITIAL_CONFIGURATION_LOADED: AtomicBool = AtomicBool::new(false);
|
||||
pub static CUSTOM_FFM: AtomicBool = AtomicBool::new(false);
|
||||
pub static SESSION_ID: AtomicU32 = AtomicU32::new(0);
|
||||
pub static ALT_FOCUS_HACK: AtomicBool = AtomicBool::new(false);
|
||||
pub static BORDER_ENABLED: AtomicBool = AtomicBool::new(false);
|
||||
pub static BORDER_HWND: AtomicIsize = AtomicIsize::new(0);
|
||||
pub static BORDER_HIDDEN: AtomicBool = AtomicBool::new(false);
|
||||
|
||||
Reference in New Issue
Block a user