sschmid hace 4 años
padre
commit
acd0b4ca6e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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();
   }