diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-19 15:04:38 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-19 15:04:38 +1100 |
commit | dd9ae27be2d1b983638337f24685e6458360dfa3 (patch) | |
tree | 3b26625721b6704669c5a6d58d8a1199ad195afe /src/Editor.cxx | |
parent | 4b553e8fce75afd0ad0df2e752edafe739db44dc (diff) | |
download | scintilla-mirror-dd9ae27be2d1b983638337f24685e6458360dfa3.tar.gz |
Implement PopClip to allow local clipping.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 5877239f0..c0a0135e1 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1806,6 +1806,8 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { NeedWrapping(pcs->DocFromDisplay(topLine)); } } + if (!view.bufferedDraw) + surfaceWindow->PopClip(); return; } @@ -1818,6 +1820,9 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { } } + if (!view.bufferedDraw) + surfaceWindow->PopClip(); + NotifyPainted(); } |