Skip to content

Commit

Permalink
Small email update to splash screen
Browse files Browse the repository at this point in the history
  • Loading branch information
thothix committed Oct 24, 2024
1 parent 2b2cee5 commit cc84485
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

namespace Guayadeque {

#define ID_GUAYADEQUE_VERSION "0.6.0-beta6"
#define ID_GUAYADEQUE_VERSION "0.6.0"
#define ID_GUAYADEQUE_REVISION "${_GUREVISION_}"

}
Expand Down
4 changes: 2 additions & 2 deletions src/ui/splash/SplashWin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ guSplashFrame::guSplashFrame( wxWindow * parent, int timeout ) :

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

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

m_Thanks = new wxHyperlinkCtrl( this, wxID_ANY, guSPLASH_THANKS wxT( "\n" ) guSPLASH_THANKS_EMAIL, wxT( "mailto:" ) guSPLASH_THANKS_EMAIL, wxDefaultPosition, wxDefaultSize, wxHL_ALIGN_RIGHT );
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 );
m_Thanks->SetHoverColour( FontColor );
m_Thanks->SetNormalColour( FontColor );
m_Thanks->SetVisitedColour( FontColor );
Expand Down

0 comments on commit cc84485

Please sign in to comment.