UI: Correctly interpret supporter names as UTF8

This commit is contained in:
Exzap 2025-06-21 18:58:58 +02:00
parent 057ef4598e
commit 522b5ef260

View file

@ -2054,7 +2054,7 @@ public:
wxString& nameList = ((i % 2) == 0) ? nameListLeft : nameListRight;
if (i >= 2)
nameList.append("\n");
nameList.append(name);
nameList.append(wxString::FromUTF8(name));
}
gridSizer->Add(new wxStaticText(parent, wxID_ANY, nameListLeft), wxSizerFlags());