Fix double click to open BBEditor PianoRoll

Fixes #2431
This commit is contained in:
Tres Finocchiaro
2015-10-30 16:44:14 -04:00
parent c98b6339cd
commit 3f6e406eb6

View File

@@ -875,7 +875,7 @@ void PatternView::mouseDoubleClickEvent(QMouseEvent *_me)
_me->ignore();
return;
}
if( !fixedTCOs() )
if( m_pat->m_patternType == Pattern::MelodyPattern || !fixedTCOs() )
{
openInPianoRoll();
}