diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2020-05-07 17:46:01 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2020-05-08 17:37:26 +0200 |
commit | e3d7fdff5ce3089b24b755063da95a3462b0fc30 (patch) | |
tree | e15fc59e9af4439a6f22acea1401cc687c4b3237 /sd/xml/transitions.xml | |
parent | 320cba92847242cfaf34966c3fc32c4e76d45f03 (diff) |
implement PowerPoint 'flash' slide transition (API CHANGE)
It's like 'fade', but using white instead of black. It's a separate
type in the pptx file (although I actually cannot find it
in the spec OOXML, but PowerPoint 2013 generates it).
The API change in XTransitionFactory should be fine, I doubt
there's anything external using it.
Change-Id: I3479840f265ed8227b3b8301ecff56a63d57f493
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93668
Tested-by: Luboš Luňák <l.lunak@collabora.com>
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'sd/xml/transitions.xml')
-rw-r--r-- | sd/xml/transitions.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sd/xml/transitions.xml b/sd/xml/transitions.xml index cefcab31cf36..78a4d213a029 100644 --- a/sd/xml/transitions.xml +++ b/sd/xml/transitions.xml @@ -134,6 +134,9 @@ <anim:par pres:preset-id="fade-through-black"> <anim:transitionFilter smil:type="fade" smil:subtype="fadeOverColor" smil:fadeColor="#000000"/> </anim:par> + <anim:par pres:preset-id="fade-through-white"> + <anim:transitionFilter smil:type="fade" smil:subtype="fadeOverColor" smil:fadeColor="#FFFFFF"/> + </anim:par> <anim:par pres:preset-id="cut-through-black"> <anim:transitionFilter smil:type="barWipe" smil:subtype="fadeOverColor" smil:fadeColor="#000000"/> </anim:par> |