MGR: Fix notices display under Mac OS 10.12.4

This commit is contained in:
Charlie Fenton 2017-04-09 02:50:11 -07:00
parent 6aebbdb213
commit 96be5aca48
1 changed files with 3 additions and 1 deletions

View File

@ -236,7 +236,9 @@ void CNoticeListCtrl::SetItemCount(int newCount) {
m_noticesBody += strBuffer; m_noticesBody += strBuffer;
} }
m_noticesBody += wxT("</font></body></html>"); m_noticesBody += wxT("</font></body></html>");
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);
} }