[Libreoffice-commits] core.git: sd/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Mar 6 10:49:25 UTC 2021
sd/source/ui/animations/CustomAnimationPane.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 92ca16e97856a37a96977187d349e036cd7e5493
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Mar 5 18:47:34 2021 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Mar 6 11:48:36 2021 +0100
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 at redhat.com>
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 );
More information about the Libreoffice-commits
mailing list