summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-01-31 21:14:02 +0000
committerXisco Fauli <xiscofauli@libreoffice.org>2022-02-07 17:05:29 +0100
commitc67abb385fbc1d601aee2fc693f440bbdfd26760 (patch)
tree5ee0b4831d0d087ebca8a89ca1e939169090104c
parenta761a31d019732ee94386fb643b6486d029695c5 (diff)
tdf#145030 if all in effects list is unselected retain last marked obj
in the slide selection Change-Id: Ibdd9c827fea3ef33f0ae385147b3fa633d5dff83 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129244 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129271 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx
index 496b7eedbb42..b952a72f69ab 100644
--- a/sd/source/ui/animations/CustomAnimationPane.cxx
+++ b/sd/source/ui/animations/CustomAnimationPane.cxx
@@ -2446,6 +2446,11 @@ void CustomAnimationPane::onSelect()
if( maSelectionLock.isLocked() )
return;
+ // tdf#145030 if nothing is selected in the effects list, leave the selection of
+ // objects in in the slide untouched
+ if (maListSelection.empty())
+ return;
+
ScopeLockGuard aGuard( maSelectionLock );
DrawViewShell* pViewShell = dynamic_cast< DrawViewShell* >(
FrameworkHelper::Instance(mrBase)->GetViewShell(FrameworkHelper::msCenterPaneURL).get());