Skip to content

Commit cc84485

Browse files
committed
Small email update to splash screen
1 parent 2b2cee5 commit cc84485

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Version.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace Guayadeque {
2424

25-
#define ID_GUAYADEQUE_VERSION "0.6.0-beta6"
25+
#define ID_GUAYADEQUE_VERSION "0.6.0"
2626
#define ID_GUAYADEQUE_REVISION "${_GUREVISION_}"
2727

2828
}

src/ui/splash/SplashWin.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ guSplashFrame::guSplashFrame( wxWindow * parent, int timeout ) :
5656

5757
MainSizer->Add( 0, 0, 1, wxEXPAND, 5 );
5858

59-
m_Email = new wxHyperlinkCtrl( this, wxID_ANY, guSPLASH_NAME wxT( " " ) guSPLASH_EMAIL, wxT( "mailto:" ) guSPLASH_EMAIL, wxDefaultPosition, wxDefaultSize, wxHL_ALIGN_RIGHT );
59+
m_Email = new wxHyperlinkCtrl( this, wxID_ANY, guSPLASH_NAME wxT( " <" ) guSPLASH_EMAIL wxT( ">" ), wxT( "mailto:" ) guSPLASH_EMAIL, wxDefaultPosition, wxDefaultSize, wxHL_ALIGN_RIGHT );
6060
m_Email->SetHoverColour( FontColor );
6161
m_Email->SetNormalColour( FontColor );
6262
m_Email->SetVisitedColour( FontColor );
6363
m_Email->SetBackgroundColour( * wxWHITE );
6464
m_Email->SetCanFocus( false );
6565
MainSizer->Add( m_Email, 0, wxALIGN_RIGHT|wxRIGHT|wxLEFT, 5 );
6666

67-
m_Thanks = new wxHyperlinkCtrl( this, wxID_ANY, guSPLASH_THANKS wxT( "\n" ) guSPLASH_THANKS_EMAIL, wxT( "mailto:" ) guSPLASH_THANKS_EMAIL, wxDefaultPosition, wxDefaultSize, wxHL_ALIGN_RIGHT );
67+
m_Thanks = new wxHyperlinkCtrl( this, wxID_ANY, guSPLASH_THANKS wxT( "\n<" ) guSPLASH_THANKS_EMAIL wxT( ">" ), wxT( "mailto:" ) guSPLASH_THANKS_EMAIL, wxDefaultPosition, wxDefaultSize, wxHL_ALIGN_RIGHT );
6868
m_Thanks->SetHoverColour( FontColor );
6969
m_Thanks->SetNormalColour( FontColor );
7070
m_Thanks->SetVisitedColour( FontColor );

0 commit comments

Comments
 (0)