Show unplaced pieces count by default

This commit is contained in:
Calcitem 2021-07-31 00:02:12 +08:00
parent 452107fa2f
commit d6483230be
No known key found for this signature in database
GPG Key ID: F2F7C29E054CFB80
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class Config {
// Display
static String languageCode = Constants.defaultLanguageCodeName;
static bool standardNotationEnabled = true;
static bool isPieceCountInHandShown = false;
static bool isPieceCountInHandShown = true;
static bool isNotationsShown = false;
static bool isHistoryNavigationToolbarShown = false;
static double boardBorderLineWidth = 2.0;
@ -126,7 +126,7 @@ class Config {
Config.standardNotationEnabled =
settings['StandardNotationEnabled'] ?? true;
Config.isPieceCountInHandShown =
settings['IsPieceCountInHandShown'] ?? false;
settings['IsPieceCountInHandShown'] ?? true;
Config.isNotationsShown = settings['IsNotationsShown'] ?? false;
Config.isHistoryNavigationToolbarShown =
settings['IsHistoryNavigationToolbarShown'] ?? false;