diff --git a/src/renderer/views/components/audio-playbackrate.ejs b/src/renderer/views/components/audio-playbackrate.ejs index 0b94e0c6..0e86d0ca 100644 --- a/src/renderer/views/components/audio-playbackrate.ejs +++ b/src/renderer/views/components/audio-playbackrate.ejs @@ -48,7 +48,7 @@ saveValue(newValue) { newValue = Number(newValue); if (newValue >= 0.25 && newValue <= 2) { - newValue = String(newValue).length > 6 ? newValue.toFixed(2) : newValue; + newValue = String(newValue).length > 4 ? newValue.toFixed(2) : newValue; this.$root.mk.playbackRate = newValue; this.$root.cfg.audio.playbackRate = newValue; this.playbackRate = newValue;