From 4793f2b26532ac21bb9c1264538e371b47b5ea58 Mon Sep 17 00:00:00 2001 From: Amaru8 <52407090+Amaru8@users.noreply.github.com> Date: Mon, 23 May 2022 19:56:34 +0200 Subject: [PATCH] uhh --- src/renderer/views/components/audio-playbackrate.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;