Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manager: Fix branded link in About Dialog #2596

Merged
merged 1 commit into from
Jul 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
Charlie Fenton committed Jul 11, 2018
commit 5d894ff197f7e903d083c5efac25ee3bf358d22f
3 changes: 3 additions & 0 deletions clientgui/DlgAbout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down