feat(config): soft deprecate window_hiding_behaviour variants

This commit adds a soft-deprecation message for the Hide and Minimize
variants of WindowHidingBehaviour to start bringing all users towards
using the Cloak variant.

resolve #897
This commit is contained in:
LGUG2Z
2024-07-04 11:36:29 -07:00
parent a5735c4186
commit cc7dbde049
2 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -356,7 +356,7 @@ pub enum HidingBehaviour {
Hide,
/// Use the SW_MINIMIZE flag to hide windows when switching workspaces (has issues with frequent workspace switching)
Minimize,
/// Use the undocumented SetCloak Win32 function to hide windows when switching workspaces (has foregrounding issues)
/// Use the undocumented SetCloak Win32 function to hide windows when switching workspaces
Cloak,
}