mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Small fix regarding Unicode characters.
Originally committed to SVN as r702.
This commit is contained in:
parent
38241d0eb5
commit
8d4cdcbd7d
@ -75,7 +75,11 @@ SubsTextEditCtrl::SubsTextEditCtrl(wxWindow* parent, wxWindowID id, const wxStri
|
||||
thesaurus = Thesaurus::GetThesaurus();
|
||||
|
||||
// Delimiters
|
||||
delim = _T(" .,;:!?에-(){}[]\"/\\");
|
||||
delim = _T(" .,;:!?-(){}[]\"/\\");
|
||||
wxChar temp = 0xBF;
|
||||
delim += temp;
|
||||
temp = 0xA1;
|
||||
delim += temp;
|
||||
|
||||
// Prototypes for call tips
|
||||
tipProtoN = -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user