diff options
author | Zufu Liu <unknown> | 2021-06-25 19:47:51 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-06-25 19:47:51 +1000 |
commit | b863e024b9bcdc78a11e2acbc93cc2e1ef79ba2e (patch) | |
tree | 3a02796960465ed764e308d25a4984612c482ba2 /win32 | |
parent | f1d157682479bfa08e82fb513b2d9510f736cc46 (diff) | |
download | scintilla-mirror-b863e024b9bcdc78a11e2acbc93cc2e1ef79ba2e.tar.gz |
Feature [feature-requests:#1400] Set buffering when technology set.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/ScintillaWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 0af4a6d65..64ca03cfa 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1832,6 +1832,7 @@ sptr_t ScintillaWin::SciMessage(Message iMessage, uptr_t wParam, sptr_t lParam) } DropRenderTarget(); technology = technologyNew; + view.bufferedDraw = technologyNew == Technology::Default; // Invalidate all cached information including layout. DropGraphics(); InvalidateStyleRedraw(); |