소스 검색

comment

#929
sschmid 4 년 전
부모
커밋
acd0b4ca6e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/OpenSheetMusicDisplay/Cursor.ts

+ 1 - 1
src/OpenSheetMusicDisplay/Cursor.ts

@@ -197,7 +197,7 @@ export class Cursor {
    * Go to next entry
    */
   public next(): void {
-    this.iterator.moveToNextVisibleVoiceEntry(false);
+    this.iterator.moveToNextVisibleVoiceEntry(false); // moveToNext() would not skip notes in hidden (visible = false) parts
     this.update();
   }