We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7873abd commit 8860473Copy full SHA for 8860473
ui/param/device.go
@@ -49,21 +49,21 @@ func (d Device) Down() {
49
d.Set(d.nodes[0].(music.Audible).Note().Device.Get() - 1)
50
}
51
52
-func (d Device) Left() {
53
- d.SetAlt(0)
54
-}
+func (d Device) Left() {}
55
56
-func (d Device) Right() {
57
58
+func (d Device) Right() {}
59
60
func (d Device) AltUp() {}
61
62
func (d Device) AltDown() {}
63
64
-func (d Device) AltLeft() {}
+func (d Device) AltLeft() {
+ d.SetAlt(0)
+}
65
66
-func (d Device) AltRight() {}
+func (d Device) AltRight() {
67
68
func (d Device) Set(value int) {
69
if !d.nodes[0].(music.Audible).Note().Device.Enabled {
0 commit comments