vcl/unx/gtk3/gtkinst.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ae354652c8b0247a05ad0d8bb1551fdafd451e53 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Thu Aug 4 16:59:54 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Fri Aug 5 09:52:19 2022 +0200 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 <caol...@redhat.com> 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