fixed encoding issue on the try menu

This commit is contained in:
EinTim23 2024-11-06 13:19:32 +01:00
parent bde0e2f057
commit ee7adb861f
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public:
protected:
virtual wxMenu* CreatePopupMenu() override {
wxMenu* menu = new wxMenu;
menu->Append(10004, _(currentSongTitle == "" ? "Not Playing" : currentSongTitle));
menu->Append(10004, currentSongTitle == "" ? _("Not Playing") : wxString::FromUTF8(currentSongTitle));
menu->Enable(10004, false);
menu->AppendSeparator();
menu->Append(10001, _("Settings"));