mirror of https://github.com/BOINC/boinc.git
MGR: convert HTML "<" to "<" in Simple View Task Panel project description (needed for ABC@home)
This commit is contained in:
parent
ec07ab2a20
commit
d823657a6e
|
@ -78,6 +78,7 @@ void CScrolledTextBox::SetValue(const wxString& s) {
|
|||
// Change all occurrences of "<sup>n</sup>" to "^n"
|
||||
t.Replace(wxT("<sup>"), wxT("^"), true);
|
||||
t.Replace(wxT("</sup>"), wxT(""), true);
|
||||
t.Replace(wxT("<"), wxT("<"), true);
|
||||
|
||||
wxSize taskPanelSize = GetGrandParent()->GetSize();
|
||||
availableWidth = taskPanelSize.GetWidth() - (2*SIDEMARGINS);
|
||||
|
|
Loading…
Reference in New Issue