Skip to content

Commit

Permalink
Moved version number into center of splash screen
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Jan 2, 2016
1 parent 574cab1 commit b9eb4d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dialogs/Splash.cpp
Expand Up @@ -233,9 +233,9 @@ CSize textsize;

textsize = dc.GetTextExtent (strVersion);

dc.SetTextColor (RGB (120, 0, 0));
dc.SetTextColor (RGB (240, 240, 240));

dc.TextOut (15, bm.bmHeight + textsize.cy - 38, strVersion);
dc.TextOut (bm.bmWidth / 2 - textsize.cx / 2, bm.bmHeight + textsize.cy - 35, strVersion);

}

Expand Down

0 comments on commit b9eb4d0

Please sign in to comment.