Some cleanup (remove temporary comments)

This commit is contained in:
Vesa
2014-02-25 21:35:01 +02:00
parent e7b097d255
commit 103ac21922
3 changed files with 3 additions and 4 deletions

View File

@@ -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 );

View File

@@ -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() );

View File

@@ -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 );
}