mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 07:31:19 +01:00
wxString in Nyquist prompt makes trip to UTF8 and back properly...
... Simple test: In Nyquist prompt enter (progn "Ü") Using Alt+U, U. Formerly it came back mis-encoded.
This commit is contained in:
@@ -1861,7 +1861,7 @@ bool NyquistEffect::ParseProgram(wxInputStream & stream)
|
||||
return false;
|
||||
}
|
||||
|
||||
wxTextInputStream pgm(stream);
|
||||
wxTextInputStream pgm(stream, wxT(" \t"), wxConvUTF8);
|
||||
|
||||
mCmd = wxT("");
|
||||
mIsSal = false;
|
||||
|
||||
Reference in New Issue
Block a user