[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - vcl/source

Samuel Mehrbrodt (via logerrit) logerrit at kemper.freedesktop.org
Thu Dec 12 16:41:00 UTC 2019


 vcl/source/treelist/svimpbox.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 9ed66c205d57093dccafa3d16fba7ddd0a109ba6
Author:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Tue Dec 10 18:08:14 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Dec 12 17:40:01 2019 +0100

    tdf#128824 Keep multiselection in style list on right click
    
    Change-Id: I196f8c7d3a1a0b3267498f6cde55069ba3a60523
    Reviewed-on: https://gerrit.libreoffice.org/84882
    Tested-by: Jenkins
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
    (cherry picked from commit 13966121b49369950f2c214f3ab109fbad0386ad)
    Reviewed-on: https://gerrit.libreoffice.org/84947
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx
index e2dca323dd26..75b482ecaa0b 100644
--- a/vcl/source/treelist/svimpbox.cxx
+++ b/vcl/source/treelist/svimpbox.cxx
@@ -2071,7 +2071,8 @@ void SvImpLBox::MouseButtonDown( const MouseEvent& rMEvt )
             return;
         // Inplace-Editing?
     }
-    if ( m_aSelEng.GetSelectionMode() != SelectionMode::NONE )
+    if ( m_aSelEng.GetSelectionMode() != SelectionMode::NONE
+         && !rMEvt.IsRight() ) // tdf#128824
         m_aSelEng.SelMouseButtonDown( rMEvt );
 }
 


More information about the Libreoffice-commits mailing list