SPARK-979: disable GrayingOut setting by default

This commit is contained in:
Sergey Ponomarev
2026-07-26 15:56:23 +03:00
parent 8046803431
commit 89a904c008
2 changed files with 2 additions and 1 deletions

View File

@ -720,7 +720,7 @@ public class LocalPreferences {
* Presence icon should be enough to distinguish idle users.
*/
public boolean isGrayingOutEnabled() {
return getBoolean("GrayingOut", true);
return getBoolean("GrayingOut", false);
}
public void setLookAndFeel(String laf) {

View File

@ -289,6 +289,7 @@ public class SettingsManager {
"contactListFontSize", "14",
"chatRoomFontSize", "16",
"passwordSaved", "true",
"GrayingOut", "false",
"hideInTaskbar", "false" // new option
);
return List.of(v1, v2);