@@ -888,6 +888,10 @@ export const gotoNext = (note: any, skipNote?: boolean) => {
} catch (error) {
console.log(error);
}
+ // 重置 或者切换演奏演唱的时候 可能出现 state.activeNoteIndex === note.i的情况 执行
+ if (state.isSingleLine && state.playState === "paused") {
+ moveSvgDom(skipNote);
+ }
return;
const osmd = state.osmd;