summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-03-05 18:47:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-03-06 11:48:36 +0100
commit92ca16e97856a37a96977187d349e036cd7e5493 (patch)
tree327734672ff689a1a24257d59228d56b2d9f65c6 /sd
parentbdd81c6848e21e4a8123e18f55dfdc63ae08eafe (diff)
drop check for visibility before calling updateMotionPathTags
presumably this is effectively always the case Change-Id: I05ac9075ea340f800cdb9b8fda6e01c8ba1fa186 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112034 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx
index b816ec57d3c2..1764b4541c2d 100644
--- a/sd/source/ui/animations/CustomAnimationPane.cxx
+++ b/sd/source/ui/animations/CustomAnimationPane.cxx
@@ -798,7 +798,7 @@ void CustomAnimationPane::updateMotionPathTags()
pView = xViewShell->GetView();
}
- if( IsVisible() && mpMainSequence && pView )
+ if (mpMainSequence && pView)
{
bChanges = updateMotionPathImpl( *this, *pView, mpMainSequence->getBegin(), mpMainSequence->getEnd(), aTags, maMotionPathTags );