Skip to content

Commit 3e1cd95

Browse files
committed
Fixed wrong shortcut shown, text overlapping in instrument tab
1 parent af1f548 commit 3e1cd95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,10 +790,10 @@ if (draw_tab("Settings")) {
790790
if (ins.user)
791791
customstr += check(instrument = ins) + clean(ins.name) + "|"
792792
else{
793-
if(a < 9){
793+
if(a < 10){
794794
str += check(instrument = ins) + "Ctrl+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
795795
}else{
796-
str += check(instrument = ins) + "Ctrl+Shift+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
796+
str += check(instrument = ins) + " Ctrl+Shift+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
797797
}
798798
}
799799
}

0 commit comments

Comments
 (0)