Browse Source

feat(engraving): allow to change system labels' right margin (#131)

Bastien 7 years ago
parent
commit
be032890d2
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/MusicalScore/Graphical/EngravingRules.ts

+ 3 - 0
src/MusicalScore/Graphical/EngravingRules.ts

@@ -442,6 +442,9 @@ export class EngravingRules {
     public get SystemLabelsRightMargin(): number {
         return this.systemLabelsRightMargin;
     }
+    public set SystemLabelsRightMargin(value: number) {
+        this.systemLabelsRightMargin = value;
+    }
     public get MinimumAllowedDistanceBetweenSystems(): number {
         return this.minimumAllowedDistanceBetweenSystems;
     }