Skip to content

Commit

Permalink
Merge pull request #13691 from frankgrimy/fix-launchpad-x-macos
Browse files Browse the repository at this point in the history
Fix Launchpad X detection on macOS
  • Loading branch information
daschuer authored Sep 24, 2024
2 parents 3a30c03 + a9bb575 commit 9db85cf
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 9db85cf

Please sign in to comment.