diff options
Diffstat (limited to 'src/gui/editors/matrix/MatrixStaff.cpp')
-rw-r--r-- | src/gui/editors/matrix/MatrixStaff.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/editors/matrix/MatrixStaff.cpp b/src/gui/editors/matrix/MatrixStaff.cpp index 55491d0..847c6f9 100644 --- a/src/gui/editors/matrix/MatrixStaff.cpp +++ b/src/gui/editors/matrix/MatrixStaff.cpp @@ -166,10 +166,10 @@ void MatrixStaff::positionElement(ViewElement* vel) // EventSelection *selection = m_view->getCurrentSelection(); - if (selection && selection->contains(el->event())) + if (selection && selection->tqcontains(el->event())) el->setColour(GUIPalette::getColour(GUIPalette::SelectedElement)); else if (el->event()->has(BaseProperties::TRIGGER_SEGMENT_ID)) - el->setColour(Qt::gray); + el->setColour(TQt::gray); else el->setColour(DefaultVelocityColour::getInstance()->getColour(velocity)); |