From 5d894ff197f7e903d083c5efac25ee3bf358d22f Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Wed, 11 Jul 2018 03:53:19 -0700 Subject: [PATCH] Manager: in the About dialog "For more information, visit" hyperlink, set the value of the link to the same string as the text displayed for the link when using a branded skin. --- clientgui/DlgAbout.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clientgui/DlgAbout.cpp b/clientgui/DlgAbout.cpp index 9040f98ace..a711077a46 100644 --- a/clientgui/DlgAbout.cpp +++ b/clientgui/DlgAbout.cpp @@ -126,6 +126,9 @@ bool CDlgAbout::Create(wxWindow* parent, wxWindowID id, const wxString& caption, m_AboutBOINCURLCtrl->SetLabel( pSkinAdvanced->GetOrganizationWebsite().c_str() ); + m_AboutBOINCURLCtrl->SetURL( + pSkinAdvanced->GetOrganizationWebsite().c_str() + ); GetSizer()->Fit(this); GetSizer()->SetSizeHints(this);