[Libreoffice-commits] core.git: filter/source
Andras Timar
andras.timar at collabora.com
Fri Jul 1 09:51:03 UTC 2016
filter/source/svg/presentation_engine.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 6b400cd64e6fa2b69926cbb5f2bcbf339dd2348f
Author: Andras Timar <andras.timar at collabora.com>
Date: Fri May 20 22:28:55 2016 +0200
bccu#1800 fix bogus loops in slide animations and transitions
Change-Id: Ic0b6a7b526f4ae09653d29f73bff7fde78a25cbf
Reviewed-on: https://gerrit.libreoffice.org/26833
Reviewed-by: Marco Cecchetti <mrcekets at gmail.com>
Tested-by: Marco Cecchetti <mrcekets at gmail.com>
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index ea5774a..c9222f5 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -13381,7 +13381,7 @@ function ElapsedTime( aTimeBase )
{
this.aTimeBase = aTimeBase;
this.nLastQueriedTime = 0.0;
- this.nStartTime = this.getSystemTime();
+ this.nStartTime = this.getCurrentTime();
this.nFrozenTime = 0.0;
this.bInPauseMode = false;
this.bInHoldMode = false;
@@ -13396,7 +13396,7 @@ ElapsedTime.prototype.getTimeBase = function()
ElapsedTime.prototype.reset = function()
{
this.nLastQueriedTime = 0.0;
- this.nStartTime = this.getSystemTime();
+ this.nStartTime = this.getCurrentTime();
this.nFrozenTime = 0.0;
this.bInPauseMode = false;
this.bInHoldMode = false;
More information about the Libreoffice-commits
mailing list