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 7529ed1 commit 40a9f15Copy full SHA for 40a9f15
lib/midi/UsbMidiManager.dart
@@ -73,7 +73,7 @@ class UsbMidiManager {
73
//find which device this belongs to
74
var ctls = MidiControllerManager().controllers;
75
for (var ctl in ctls) {
76
- if (ctl.name == event.device.name && ctl.id == event.device.id) {
+ if (ctl.id == event.device.id) {
77
(ctl as UsbMidiController).onDataReceivedLoopback(event.data);
78
}
79
0 commit comments