From 1814fa05b0b4506c057251d6354c64c295c3c3ce Mon Sep 17 00:00:00 2001 From: k-l-lambda Date: Thu, 2 Sep 2021 10:31:16 +0800 Subject: [PATCH] MusicNotation.js: fixed scaleTempo. --- source/inc/MusicNotation.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/inc/MusicNotation.js b/source/inc/MusicNotation.js index f5d796c..6ee0223 100644 --- a/source/inc/MusicNotation.js +++ b/source/inc/MusicNotation.js @@ -459,6 +459,8 @@ class Notation { note.start *= factor; note.duration *= factor; }); + + this.endTime *= factor; } };