We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af1f548 commit 3e1cd95Copy full SHA for 3e1cd95
scripts/control_draw/control_draw.gml
@@ -790,10 +790,10 @@ if (draw_tab("Settings")) {
790
if (ins.user)
791
customstr += check(instrument = ins) + clean(ins.name) + "|"
792
else{
793
- if(a < 9){
+ if(a < 10){
794
str += check(instrument = ins) + "Ctrl+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
795
}else{
796
- str += check(instrument = ins) + "Ctrl+Shift+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
+ str += check(instrument = ins) + " Ctrl+Shift+" + string((a + 1) % 10) + "$" + clean(ins.name) + "|"
797
}
798
799
0 commit comments