mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-08-18 02:56:24 +00:00
SPARK-979: disable GrayingOut setting by default
This commit is contained in:
@ -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) {
|
||||
|
||||
@ -289,6 +289,7 @@ public class SettingsManager {
|
||||
"contactListFontSize", "14",
|
||||
"chatRoomFontSize", "16",
|
||||
"passwordSaved", "true",
|
||||
"GrayingOut", "false",
|
||||
"hideInTaskbar", "false" // new option
|
||||
);
|
||||
return List.of(v1, v2);
|
||||
|
||||
Reference in New Issue
Block a user