Browse Source

exports: add unexported classes from Common/DataObjects to exported index (#926)

fix #926
sschmid 4 years ago
parent
commit
6cabc23e62
2 changed files with 2 additions and 3 deletions
  1. 1 2
      src/Common/index.ts
  2. 1 1
      src/MusicalScore/Graphical/MusicSheetCalculator.ts

+ 1 - 2
src/Common/index.ts

@@ -1,4 +1,3 @@
-export * from "./DataObjects/Fraction";
-export * from "./DataObjects/Pitch";
+export * from "./DataObjects";
 export * from "./Enums";
 export * from "./FileIO";

+ 1 - 1
src/MusicalScore/Graphical/MusicSheetCalculator.ts

@@ -266,7 +266,7 @@ export abstract class MusicSheetCalculator {
         // delete graphicalObjects (currently: ties) that will be recalculated, newly create GraphicalObjects streching over a single StaffEntry
         this.clearRecreatedObjects();
 
-        //this.graphicalMusicSheet.initializeActiveClefs(); // could have been changed since last render?
+        // this.graphicalMusicSheet.initializeActiveClefs(); // could have been changed since last render?
 
         this.createGraphicalTies();