Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/midi/src/common/midiprotocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ bool QLCMIDIProtocol::feedbackToMidi(quint32 channel, uchar value,
{
// for OMNI mode, retrieve the original MIDI channel where data was sent
if (midiChannel == MAX_MIDI_CHANNELS)
midiChannel = channel >> 12;
midiChannel = (channel >> 12) & 0x000F;

// Remove the 4 MSB bits to retrieve the QLC+ channel to be processed
channel = channel & 0x0FFF;
Expand Down
5 changes: 5 additions & 0 deletions ui/src/virtualconsole/vcslider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1271,6 +1271,11 @@ void VCSlider::setSliderValue(uchar value, bool scale, bool external)
if (m_slider->isSliderDown() == false && val != m_slider->value())
emit requestSliderUpdate(val);

/* Send Feedback for motorized faders */
if (external) {
sendFeedback(val);
}

switch (sliderMode())
{
case Level:
Expand Down