sschmidTU 3 years ago
parent
commit
c67aacb9b2
1 changed files with 2 additions and 7 deletions
  1. 2 7
      src/Playback/PlaybackManager.ts

+ 2 - 7
src/Playback/PlaybackManager.ts

@@ -394,13 +394,8 @@ export class PlaybackManager implements IPlaybackParametersListener {
 
     }
 
-    /** Starts play() from a time in milliseconds.
-     *  Note that sometimes all notes still active at the timestamp will be played.
-     *  This is due to the playback system and could potentially be improved,
-     *  but note that OSMD is not an mp3 player that can start in the middle of a sound,
-     *  so please don't overuse this feature.
-     */
-    public async playFromMs(timeInMs: number): Promise<void> {
+     /** Starts play() from a time in milliseconds.*/
+     public async playFromMs(timeInMs: number): Promise<void> {
         await this.pause();
         const timestamp: Fraction = this.getTimestampFromMs(timeInMs);
         const previousSelectionStart: Fraction = this.musicPartManager.MusicSheet.SelectionStart.clone();