diff options
author | Colomban Wendling <ban@herbesfolles.org> | 2014-05-14 17:13:05 +0200 |
---|---|---|
committer | Colomban Wendling <ban@herbesfolles.org> | 2014-05-14 17:13:05 +0200 |
commit | 442e6bce2e64ae672a5e9879759ef36446b0f382 (patch) | |
tree | 4646ab335d96584e04257f5bc6017c5380f56b4b | |
parent | a12ff8ecb654569d32cb11baa71d4fb46196b3da (diff) | |
download | scintilla-mirror-442e6bce2e64ae672a5e9879759ef36446b0f382.tar.gz |
GTK: Avoid flickering when wrapping lines
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index d106c1713..43c83f2c3 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1208,7 +1208,7 @@ bool ScintillaGTK::ModifyScrollBars(int nMax, int nPage) { } #endif if (modified && (paintState == painting)) { - paintState = paintAbandoned; + repaintFullWindow = true; } return modified; |