PianoRoll: removed duplicate function call in testPlayNote()
There's no need to send a MidiNotePanning event twice in PianoRoll::testPlayNote(). Removed the duplicate function call.
This commit is contained in:
@@ -1679,10 +1679,7 @@ void pianoRoll::testPlayNote( note * n )
|
||||
panningToMidi( n->getPanning() ) );
|
||||
|
||||
evt.m_metaEvent = MidiNotePanning;
|
||||
m_pattern->getInstrumentTrack()->processInEvent(
|
||||
evt, midiTime() );
|
||||
m_pattern->getInstrumentTrack()->processInEvent( evt,
|
||||
midiTime() );
|
||||
m_pattern->getInstrumentTrack()->processInEvent( evt, midiTime() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user