Skip to content

Commit

Permalink
fix: minor formatting issue (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardomourar authored Sep 11, 2022
1 parent e94445c commit e3e8da9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fingeringdiagram.qml
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ MuseScore {
72: 'wind.flutes.flute.piccolo',
73: 'wind.flutes.flute',
74: 'wind.flutes.recorder'
};
};
property variant offsetY : 4; // When fingering element not available
property variant offsetX : 0.5; // When fingering element not available
property variant fontSize : 42;
Expand Down Expand Up @@ -532,9 +532,9 @@ MuseScore {
var cursor = curScore.newCursor();
cursor.rewind(1); // start of selection
if (!cursor.segment) { // no selection
fullScore = true;
fullScore = true;
startStaff = 0; // start with 1st staff
endStaff = curScore.nstaves - 1; // and end with last
endStaff = curScore.nstaves - 1; // and end with last
console.log('Full score staves ' + startStaff + ' - ' + endStaff);
} else {
startStaff = cursor.staffIdx;
Expand Down

0 comments on commit e3e8da9

Please sign in to comment.