mirror of https://github.com/BOINC/boinc.git
MGR: Fix notices display under Mac OS 10.12.4
This commit is contained in:
parent
980b8c8899
commit
91bcf1d665
|
@ -236,7 +236,9 @@ void CNoticeListCtrl::SetItemCount(int newCount) {
|
|||
m_noticesBody += strBuffer;
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue