https://bugs.documentfoundation.org/show_bug.cgi?id=161765

Heiko Tietze <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected],
                   |                            |[email protected]

--- Comment #16 from Heiko Tietze <[email protected]> ---
Looks like Calc uses the current expert option for marching ants together with
a system setting for macOS; all modules disable text animations with the one
option and graphic animations (likely animated gif only) with the other plus
the macOS thing.

Based on this we could name the option "Reduce Animations" with the options
System (or Automatic)/Disabled/Enabled.

Calc:
ScOverlayDashedBorder::ScOverlayDashedBorder()
...
mbAllowsAnimation = (officecfg::Office::Common::VCL::AnimationsEnabled::get()
&& !MiscSettings::GetUseReducedAnimation());


Generic:
 // check if text animation is allowed.
 bool ObjectContactOfPageView::IsTextAnimationAllowed() const
     return
officecfg::Office::Common::Accessibility::IsAllowAnimatedText::get();

 // check if graphic animation is allowed.
 bool ObjectContactOfPageView::IsGraphicAnimationAllowed() const
    // Related tdf#156630 respect system animation setting
    return
officecfg::Office::Common::Accessibility::IsAllowAnimatedGraphics::get() &&
!MiscSettings::GetUseReducedAnimation();

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to