Skip to content

Commit

Permalink
Update portmidienumerator.cpp
Browse files Browse the repository at this point in the history
Fixes Novation Launchpad X detection in macOS
  • Loading branch information
frankgrimy committed Sep 24, 2024
1 parent 3a30c03 commit a9bb575
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/controllers/midi/portmidienumerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ bool namesMatchAllowableEdgeCases(const QString& input_name,
if (input_name == "MIDIIN2 (Ableton Push)" && output_name == "MIDIOUT2 (Ableton Push)") {
return true;
}

// Novation Launchpad X (macOS)
if (input_name == "Launchpad X LPX DAW Out" && output_name == "Launchpad X LPX DAW In") {
return true;
}

return false;
}

Expand Down

0 comments on commit a9bb575

Please sign in to comment.