From 96be5aca48073ad37b809461d161955fd83695d6 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Sun, 9 Apr 2017 02:50:11 -0700 Subject: [PATCH] MGR: Fix notices display under Mac OS 10.12.4 --- clientgui/NoticeListCtrl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clientgui/NoticeListCtrl.cpp b/clientgui/NoticeListCtrl.cpp index 40903c85c6..12d721899c 100644 --- a/clientgui/NoticeListCtrl.cpp +++ b/clientgui/NoticeListCtrl.cpp @@ -236,7 +236,9 @@ void CNoticeListCtrl::SetItemCount(int newCount) { m_noticesBody += strBuffer; } m_noticesBody += wxT(""); - m_browser->SetPage(m_noticesBody, wxT("http://")); + // baseURL is not needed here (see comments above) and it + // must be an empty string for this to work under OS 10.12.4 + m_browser->SetPage(m_noticesBody, wxEmptyString); }