forked from mia/Aegisub
Small fix regarding Unicode characters.
Originally committed to SVN as r702.
This commit is contained in:
parent
38241d0eb5
commit
8d4cdcbd7d
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue