summaryrefslogtreecommitdiffstats
path: root/slideshow/source/engine/shapes/gdimtftools.cxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-03-23 16:59:19 +0100
committerJan Holesovsky <kendy@suse.cz>2011-03-23 16:59:19 +0100
commit219458b0d7a0c785efaaebf2107260d67580db59 (patch)
tree51afdf8c6f51dfc565734828cee1fda2b72c5f49 /slideshow/source/engine/shapes/gdimtftools.cxx
parentunused variable (diff)
parentCWS-TOOLING: integrate CWS debuglevels (diff)
downloadcore-219458b0d7a0c785efaaebf2107260d67580db59.tar.gz
core-219458b0d7a0c785efaaebf2107260d67580db59.zip
Merge commit 'ooo/DEV300_m103'
Conflicts: sd/source/ui/toolpanel/TaskPaneFocusManager.cxx slideshow/source/engine/debug.cxx slideshow/source/engine/transitions/randomwipe.cxx
Diffstat (limited to 'slideshow/source/engine/shapes/gdimtftools.cxx')
-rw-r--r--slideshow/source/engine/shapes/gdimtftools.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx b/slideshow/source/engine/shapes/gdimtftools.cxx
index dec32a95262d..9e914c41c088 100644
--- a/slideshow/source/engine/shapes/gdimtftools.cxx
+++ b/slideshow/source/engine/shapes/gdimtftools.cxx
@@ -491,9 +491,10 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames& o_rFrames,
nWaitTime100thSeconds = 100 * 60 * 60 * 24;
}
- // There are animated GIFs with no WaitTime set. Take 1 sec, then.
+ // There are animated GIFs with no WaitTime set. Take 0.1 sec, the
+ // same duration that is used by the edit view.
if( nWaitTime100thSeconds == 0 )
- nWaitTime100thSeconds = 100;
+ nWaitTime100thSeconds = 10;
o_rFrames.push_back( MtfAnimationFrame( pMtf,
nWaitTime100thSeconds / 100.0 ) );