Browse Source

refactor

revert an accidental refactor in #862
sschmid 4 years ago
parent
commit
adb14da506
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/MusicalScore/Graphical/EngravingRules.ts

+ 4 - 4
src/MusicalScore/Graphical/EngravingRules.ts

@@ -632,10 +632,10 @@ export class EngravingRules {
 
 // TODO maybe this should be moved to OSMDOptions. Also see OpenSheetMusicDisplay.PageFormatStandards
 export class PageFormat {
-    constructor(Width: number, Height: number, IdString: string = "noIdStringGiven") {
-        this.width = Width;
-        this.height = Height;
-        this.idString = IdString;
+    constructor(width: number, height: number, idString: string = "noIdStringGiven") {
+        this.width = width;
+        this.height = height;
+        this.idString = idString;
     }
     public width: number;
     public height: number;