diff --git a/src/gui/AutomationPatternView.cpp b/src/gui/AutomationPatternView.cpp index f868a071a..98a36cf62 100644 --- a/src/gui/AutomationPatternView.cpp +++ b/src/gui/AutomationPatternView.cpp @@ -220,7 +220,7 @@ void AutomationPatternView::paintEvent( QPaintEvent * ) QColor c; if( !( m_pat->getTrack()->isMuted() || m_pat->isMuted() ) ) c = isSelected() ? QColor( 0, 0, 224 ) - : styleColor; //QColor( 0x99, 0xAF, 0xFF ); + : styleColor; else c = QColor( 80,80,80 ); diff --git a/src/tracks/SampleTrack.cpp b/src/tracks/SampleTrack.cpp index 8525f7905..274010bce 100644 --- a/src/tracks/SampleTrack.cpp +++ b/src/tracks/SampleTrack.cpp @@ -333,7 +333,7 @@ void SampleTCOView::paintEvent( QPaintEvent * _pe ) QColor c; if( !( m_tco->getTrack()->isMuted() || m_tco->isMuted() ) ) c = isSelected() ? QColor( 0, 0, 224 ) - : styleColor; //QColor( 74, 253, 133 ); + : styleColor; else c = QColor( 80, 80, 80 ); QLinearGradient grad( 0, 0, 0, height() ); diff --git a/src/tracks/pattern.cpp b/src/tracks/pattern.cpp index 76476d365..cbbd63d7d 100644 --- a/src/tracks/pattern.cpp +++ b/src/tracks/pattern.cpp @@ -840,7 +840,7 @@ void patternView::paintEvent( QPaintEvent * ) if(( m_pat->m_patternType != pattern::BeatPattern ) && !( m_pat->getTrack()->isMuted() || m_pat->isMuted() )) c = isSelected() ? QColor( 0, 0, 224 ) - : styleColor;//QColor( 119, 199, 216 ); + : styleColor; else c = QColor( 80, 80, 80 ); @@ -1028,7 +1028,6 @@ void patternView::paintEvent( QPaintEvent * ) p.end(); -// p.begin( this ); _p.drawPixmap( 0, 0, m_paintPixmap ); }