Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default value for tablature position, Do not write tab under tied notes #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Comments in english
  • Loading branch information
Thibibi committed Dec 16, 2018
commit 80efba148c1f5e9907306e1fce590eb669b45501
5 changes: 4 additions & 1 deletion harmonica_tablature.qml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ MuseScore {
}
}
ComboBox {
currentIndex: 1
currentIndex: 3
// Lower by default, prefered harp players' position
// Lower par défaut, position préférée des harmonicistes
model: ListModel {
id: placetext
property var position
Expand Down Expand Up @@ -240,6 +242,7 @@ MuseScore {
text.text = "X";
else {
if (notes[i].tieBack != null) {
// No tab if the note is tied
// Pas de tablature si la note est une note liée
tab = ""
} else if (bendChar !== "b") {
Expand Down