minor tweaks

This commit is contained in:
thrust26 2020-02-25 11:13:05 +01:00
parent 35bad97485
commit 34586be8ff
2 changed files with 3 additions and 2 deletions

View File

@ -583,7 +583,7 @@ void GameInfoDialog::addHighScoresTab()
ypos += lineHeight + VGAP * 3;
myHighScoreNotesLabel = new StaticTextWidget(myTab, _font, xpos, ypos + 1, "Notes");
myHighScoreNotesLabel = new StaticTextWidget(myTab, _font, xpos, ypos + 1, "Note");
myHighScoreNotes = new EditTextWidget(myTab, _font, mySpecialName->getLeft(), ypos - 1,
_w - HBORDER - mySpecialName->getLeft() - 2 , lineHeight);
myHighScoreNotes->setTextFilter(fText);

View File

@ -144,7 +144,8 @@ HighScoresDialog::HighScoresDialog(OSystem& osystem, DialogContainer& parent,
ypos += infoLineHeight + VGAP;
myMD5Widget = new StaticTextWidget(this, ifont, xpos, ypos + 1, "MD5: 12345678901234567890123456789012");
myMD5Widget = new StaticTextWidget(this, ifont, xpos, ypos + 1,
"MD5: 12345678901234567890123456789012");
_h = myMD5Widget->getBottom() + VBORDER + buttonHeight(_font) + VBORDER;