diff options
author | nyamatongwe <unknown> | 2003-01-13 10:24:16 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-01-13 10:24:16 +0000 |
commit | f598f1902b72b91aa85e584cd2459470e869dc7e (patch) | |
tree | 129acad55d412f8227f7b2ceb81e9b6441ca82eb | |
parent | a02d4c8e5a6f514a27875c634035491d52565e9f (diff) | |
download | scintilla-mirror-f598f1902b72b91aa85e584cd2459470e869dc7e.tar.gz |
Set up DBCS mode when needed in main drawing code.
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index c9833b03a..6bc0a7e5f 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2126,6 +2126,7 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { surface = pixmapLine; } surface->SetUnicodeMode(IsUnicodeMode()); + surface->SetDBCSMode(CodePage()); int visibleLine = topLine + screenLinePaintFirst; |