// colours
m_normalColour = *wxBLUE;
m_hoverColour = *wxRED;
+ m_visitedColour = wxColour("#551a8b");
SetForegroundColour(m_normalColour);
// by default the font of an hyperlink control is underlined
void wxGenericHyperlinkCtrl::OnLeftUp(wxMouseEvent& event)
{
// the click must be started and ended in the hyperlink rect
- if (!m_clicking || !GetLabelRect().Contains(event.GetPosition()))
+ if (!m_clicking || !GetLabelRect().Contains(event.GetPosition()))
return;
SetForegroundColour(m_visitedColour);