Skip to content

Commit

Permalink
src/DialogAbout.cpp: Make version text align with application title
Browse files Browse the repository at this point in the history
Signed-off-by: 林博仁 <[email protected]>
  • Loading branch information
brlin-tw committed Jun 12, 2017
1 parent 587408d commit 0f832e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DialogAbout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ DialogAbout::DialogAbout( wxWindow* parent, wxWindowID id, const wxString& title
m_staticTextVersion = new wxStaticText( this, wxID_ANY, wxString::Format(_("Version %s"), NUM_VERSION));
m_staticTextVersion->SetFont( wxFont( 10, 74, 90, 92, false, wxT("Sans") ) );
m_staticTextVersion->SetForegroundColour( wxColour( 69, 141, 196 ) );
sizerTxt->Add( m_staticTextVersion, 0, wxLEFT, 50 );
sizerTxt->Add( m_staticTextVersion, 0, wxLEFT, 5 );
sizerImg->Add( sizerTxt, 0, 0, 5 );
sizerAll->Add( sizerImg, 0, wxEXPAND, 5 );

Expand Down

0 comments on commit 0f832e7

Please sign in to comment.