[Libreoffice-commits] core.git: vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon Mar 1 16:31:52 UTC 2021


 vcl/source/window/layout.cxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 86303d2372b30bf02e28ea2b223f0e0aa7a161a3
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Mar 1 11:56:17 2021 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Mar 1 17:31:04 2021 +0100

    tdf#140537 scroll-wheeling shouldn't affect disabled scrollbars
    
    Change-Id: I5d8659c7d431d35d628b12cebfe6a4b4f9cab9ef
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111748
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 1408a3dc6dd0..ccdcc923117f 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -2051,7 +2051,10 @@ bool VclScrolledWindow::EventNotify(NotifyEvent& rNEvt)
             const CommandWheelData* pData = rCEvt.GetWheelData();
             if( !pData->GetModifier() && ( pData->GetMode() == CommandWheelMode::SCROLL ) )
             {
-                bDone = HandleScrollCommand(rCEvt, m_pHScroll, m_pVScroll);
+                // tdf#140537 only handle scroll commands in the valid shown scrollbars
+                bDone = HandleScrollCommand(rCEvt,
+                                            m_pHScroll->IsVisible() ? m_pHScroll : nullptr,
+                                            m_pVScroll->IsVisible() ? m_pVScroll : nullptr);
             }
         }
     }


More information about the Libreoffice-commits mailing list