mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-07 22:33:01 -04:00
Suppress midi in events on export (#3778)
This commit is contained in:
@@ -237,6 +237,11 @@ MidiEvent InstrumentTrack::applyMasterKey( const MidiEvent& event )
|
||||
|
||||
void InstrumentTrack::processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset )
|
||||
{
|
||||
if( Engine::getSong()->isExporting() )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
bool eventHandled = false;
|
||||
|
||||
switch( event.type() )
|
||||
|
||||
Reference in New Issue
Block a user