prevent storing preset when clicking an empty slot with shift+ctrl
This commit is contained in:
@@ -1779,8 +1779,10 @@ function onclick(x,y,but,cmd,shift,capslock,option,ctrl)
|
|||||||
if (select_mode) {
|
if (select_mode) {
|
||||||
output = "select";
|
output = "select";
|
||||||
}
|
}
|
||||||
if (shift) {
|
if (shift) {
|
||||||
output = "store";
|
if (!option && !ctrl) {
|
||||||
|
output = "store";
|
||||||
|
}
|
||||||
if (option && slots[last_hovered].filled) {
|
if (option && slots[last_hovered].filled) {
|
||||||
output = "delete";
|
output = "delete";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user