mirror of https://github.com/stella-emu/stella.git
a cosmetic change in HighScoresDialog
This commit is contained in:
parent
37f2703244
commit
da70ec4eda
|
@ -212,7 +212,10 @@ void HighScoresDialog::loadConfig()
|
||||||
label = label.substr(label.length() - 5);
|
label = label.substr(label.length() - 5);
|
||||||
mySpecialLabelWidget->setLabel(label);
|
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())
|
if (instance().hasConsole())
|
||||||
myMD5 = instance().console().properties().get(PropType::Cart_MD5);
|
myMD5 = instance().console().properties().get(PropType::Cart_MD5);
|
||||||
|
|
Loading…
Reference in New Issue