diff --git a/src/renderer/components/timer/Timer-dial.vue b/src/renderer/components/timer/Timer-dial.vue index 77dd026f..87c4b0f9 100644 --- a/src/renderer/components/timer/Timer-dial.vue +++ b/src/renderer/components/timer/Timer-dial.vue @@ -132,7 +132,11 @@ export default { this.dial = anime({ targets: '.Dial-fill path', strokeDashoffset: [anime.setDashoffset, 0], - easing: 'linear', + easing: function(el, i, total) { + return function(t) { + return t.toFixed(3) + } + }, duration: duration, direction: 'reverse', autoplay: false