Skip to content

Commit

Permalink
Merge pull request #20 from eduardomourar/feature/0019-wrong-sax-fing…
Browse files Browse the repository at this point in the history
…erings

Fix Tenor and Baritone Sax transposition
  • Loading branch information
eduardomourar authored Sep 16, 2020
2 parents aeb8e17 + 6024c46 commit b14a3cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fingeringdiagram.qml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ MuseScore {
if (instrument === 'wind.reed.saxophone.alto') {
this.transpose = 7;
} else if (instrument === 'wind.reed.saxophone.tenor') {
this.transpose = 5;
this.transpose = 12;
} else if (instrument === 'wind.reed.saxophone.baritone') {
this.transpose = 7;
this.transpose = 19;
this.base += '\uE281';
}
} else if (instrument === 'wind.flutes.recorder' || instrument === 'wind.flutes.recorder.soprano'
Expand Down

0 comments on commit b14a3cf

Please sign in to comment.