From 34586be8ff95c201cdcb4da79f6174157580b59b Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 25 Feb 2020 11:13:05 +0100 Subject: [PATCH] minor tweaks --- src/gui/GameInfoDialog.cxx | 2 +- src/gui/HighScoresDialog.cxx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gui/GameInfoDialog.cxx b/src/gui/GameInfoDialog.cxx index 5cc465a20..d5507063c 100644 --- a/src/gui/GameInfoDialog.cxx +++ b/src/gui/GameInfoDialog.cxx @@ -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); diff --git a/src/gui/HighScoresDialog.cxx b/src/gui/HighScoresDialog.cxx index 7d3b6958e..9bdf6a7b5 100644 --- a/src/gui/HighScoresDialog.cxx +++ b/src/gui/HighScoresDialog.cxx @@ -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;