| 440 | |
| 441 | |
| 442 | void SampleTCOView::mouseReleaseEvent(QMouseEvent *_me) |
| 443 | { |
| 444 | if( _me->button() == Qt::MiddleButton && !_me->modifiers() ) |
| 445 | { |
| 446 | SampleTCO * sTco = dynamic_cast<SampleTCO*>( getTrackContentObject() ); |
| 447 | if( sTco ) |
| 448 | { |
| 449 | sTco->playbackPositionChanged(); |
| 450 | } |
| 451 | } |
| 452 | TrackContentObjectView::mouseReleaseEvent( _me ); |
| 453 | } |
| 454 | |
| 455 | |
| 456 |
nothing calls this directly
no test coverage detected