diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2022-04-07 13:08:52 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2022-04-07 13:08:52 +1000 |
commit | b443d58497d6d2cfce83c3882ff0cf0ce45914d1 (patch) | |
tree | 9ac17f160c9cee962c1852aea8154105b91c10de /gtk/ScintillaGTK.h | |
parent | 2a5bfddbe88be0410c6b9cead263a6d637183f11 (diff) | |
download | scintilla-mirror-b443d58497d6d2cfce83c3882ff0cf0ce45914d1.tar.gz |
Bug [#2322] Fix partial updates and non-responsive scroll bars on Xorg.
Also fixes bugs [#2196] and [#2312].
Diffstat (limited to 'gtk/ScintillaGTK.h')
-rwxr-xr-x | gtk/ScintillaGTK.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.h b/gtk/ScintillaGTK.h index 9e9858c55..5db4ed3a5 100755 --- a/gtk/ScintillaGTK.h +++ b/gtk/ScintillaGTK.h @@ -82,6 +82,7 @@ class ScintillaGTK : public ScintillaBase { bool repaintFullWindow; guint styleIdleID; + guint scrollBarIdleID = 0; FontOptions fontOptionsPrevious; int accessibilityEnabled; AtkObject *accessible; @@ -133,6 +134,7 @@ private: void SetHorizontalScrollPos() override; bool ModifyScrollBars(Sci::Line nMax, Sci::Line nPage) override; void ReconfigureScrollBars() override; + void SetScrollBars() override; void NotifyChange() override; void NotifyFocus(bool focus) override; void NotifyParent(Scintilla::NotificationData scn) override; |