Fix a bug where copied instrument tracks appear grey

This commit is contained in:
Vesa
2014-02-25 23:35:46 +02:00
parent 103ac21922
commit a89b131eca
2 changed files with 3 additions and 0 deletions

View File

@@ -202,6 +202,8 @@ SampleTCOView::SampleTCOView( SampleTCO * _tco, trackView * _tv ) :
// track future changes of SampleTCO
connect( m_tco, SIGNAL( sampleChanged() ),
this, SLOT( updateSample() ) );
setStyle( QApplication::style() );
}

View File

@@ -594,6 +594,7 @@ patternView::patternView( pattern * _pattern, trackView * _parent ) :
toolTip::add( this,
tr( "double-click to open this pattern in piano-roll\n"
"use mouse wheel to set volume of a step" ) );
setStyle( QApplication::style() );
}