Skip to content

Commit

Permalink
Merge pull request #1066 from janosvitok/pitch-wheel
Browse files Browse the repository at this point in the history
Input Channel Editor: fix MIDI Pitch Wheel processing
  • Loading branch information
mcallegari committed Jun 8, 2018
2 parents 5603590 + 4c14447 commit 0c6b926
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui/src/inputchanneleditor.cpp
Expand Up @@ -210,6 +210,10 @@ void InputChannelEditor::numberToMidi(int number, int & channel, int & message,
{
message = KMidiMessageChannelAftertouch;
}
else if (number == CHANNEL_OFFSET_PITCH_WHEEL)
{
message = KMidiMessagePitchWheel;
}
else if (number == CHANNEL_OFFSET_MBC_PLAYBACK)
{
message = KMidiMessageMBCPlayback;
Expand Down

0 comments on commit 0c6b926

Please sign in to comment.