diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-04 16:59:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-05 09:52:19 +0200 |
commit | ae354652c8b0247a05ad0d8bb1551fdafd451e53 (patch) | |
tree | dbc946697d48845e533abc6b2f600ddeb279fe68 /vcl | |
parent | b7c1f13eca14836ce3427afb79cae1101661461c (diff) |
using ScrollType::Drag looks the safest choice
rather than DontKnow, Drag assumptions seem to fit best
Change-Id: Iae92b29d33e69410c67b43fabb933018f1277abf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137809
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk3/gtkinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx index 06c9d706d2fd..158bc84c002b 100644 --- a/vcl/unx/gtk3/gtkinst.cxx +++ b/vcl/unx/gtk3/gtkinst.cxx @@ -8557,7 +8557,7 @@ public: virtual ScrollType get_scroll_type() const override { - return ScrollType::DontKnow; + return ScrollType::Drag; } virtual ~GtkInstanceScrollbar() override |