mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-19 14:38:22 -04:00
MidiPort: subscribe writable rather than readable port when settings
When loading MidiPort settings, erroneously readable port was subscribed rather
than writable port. This commit fixes the issue.
(cherry picked from commit d981b32480)
This commit is contained in:
@@ -266,7 +266,7 @@ void midiPort::loadSettings( const QDomElement & _this )
|
||||
{
|
||||
if( it.value() != ( wp.indexOf( it.key() ) != -1 ) )
|
||||
{
|
||||
subscribeReadablePort( it.key() );
|
||||
subscribeWritablePort( it.key() );
|
||||
}
|
||||
}
|
||||
emit writablePortsChanged();
|
||||
|
||||
Reference in New Issue
Block a user