Make showOfflineUsers true by default

Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
This commit is contained in:
Sergey Ponomarev 2024-08-23 21:50:05 +03:00
parent b53b814740
commit 768043a37d

View File

@ -727,7 +727,7 @@ public class LocalPreferences {
}
public boolean isOfflineUsersShown() {
return getBoolean("showOfflineUsers", false);
return getBoolean("showOfflineUsers", true);
}
public void setOfflineUsersShown(boolean shown) {