diff --git a/src/core/track.cpp b/src/core/track.cpp index 5aa7a6be2..d75cc91b4 100644 --- a/src/core/track.cpp +++ b/src/core/track.cpp @@ -599,6 +599,17 @@ void trackContentObjectView::mousePressEvent( QMouseEvent * _me ) remove(); } } + else if( _me->button() == Qt::MidButton ) + { + if( _me->modifiers() & Qt::ControlModifier ) + { + m_tco->toggleMute(); + } + else if( fixedTCOs() == false ) + { + remove(); + } + } }