sdext/source/presenter/PresenterWindowManager.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 18ff6840185758145c1620c700125022c34ad107
Author:     Samuel Mehrbrodt <samuel.mehrbr...@cib.de>
AuthorDate: Thu Oct 31 11:53:00 2019 +0100
Commit:     Thorsten Behrens <thorsten.behr...@cib.de>
CommitDate: Fri Nov 1 10:41:47 2019 +0100

    tdf#127921 Don't change slides when clicking in Slide sorter view
    
    Change-Id: I21dfe232234d29dd110771a9edf9d4b9b0f6d53b
    Reviewed-on: https://gerrit.libreoffice.org/81833
    Tested-by: Jenkins
    Reviewed-by: Samuel Mehrbrodt <samuel.mehrbr...@cib.de>
    (cherry picked from commit 8eba06afac375db28022d320d19943d8a129c436)
    Reviewed-on: https://gerrit.libreoffice.org/81871
    Reviewed-by: Thorsten Behrens <thorsten.behr...@cib.de>

diff --git a/sdext/source/presenter/PresenterWindowManager.cxx 
b/sdext/source/presenter/PresenterWindowManager.cxx
index a4ea38e65516..6ec1ab4ac501 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.cxx
@@ -273,7 +273,8 @@ void SAL_CALL PresenterWindowManager::windowPaint (const 
awt::PaintEvent& rEvent
 
 void SAL_CALL PresenterWindowManager::mousePressed (const 
css::awt::MouseEvent&)
 {
-    mbIsMouseClickPending = true;
+    if (!mbIsSlideSorterActive) // tdf#127921
+        mbIsMouseClickPending = true;
 }
 
 void SAL_CALL PresenterWindowManager::mouseReleased (const 
css::awt::MouseEvent& rEvent)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to