a cosmetic change in HighScoresDialog

This commit is contained in:
thrust26 2020-02-29 23:18:41 +01:00
parent 37f2703244
commit da70ec4eda
1 changed files with 4 additions and 1 deletions

View File

@ -212,7 +212,10 @@ void HighScoresDialog::loadConfig()
label = label.substr(label.length() - 5);
mySpecialLabelWidget->setLabel(label);
myNotesWidget->setLabel("Note: " + instance().highScores().notes());
if(!instance().highScores().notes().empty())
myNotesWidget->setLabel("Note: " + instance().highScores().notes());
else
myNotesWidget->setLabel("");
if (instance().hasConsole())
myMD5 = instance().console().properties().get(PropType::Cart_MD5);