[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - sdext/source
Samuel Mehrbrodt (via logerrit)
logerrit at kemper.freedesktop.org
Fri Nov 1 09:42:25 UTC 2019
sdext/source/presenter/PresenterWindowManager.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 18ff6840185758145c1620c700125022c34ad107
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Thu Oct 31 11:53:00 2019 +0100
Commit: Thorsten Behrens <Thorsten.Behrens at 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.Mehrbrodt at cib.de>
(cherry picked from commit 8eba06afac375db28022d320d19943d8a129c436)
Reviewed-on: https://gerrit.libreoffice.org/81871
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at 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)
More information about the Libreoffice-commits
mailing list