TrackView: do not set Qt::WA_OpaquePaintEvent attribute

Due to optimizations in Qt 4.5 setting Qt::WA_OpaquePaintEvent attribute
for TrackView widgets caused a line of distorted pixels at the bottom of
the left part so do not set this attribute anymore (closes #2795861).
This commit is contained in:
Tobias Doerffel
2009-05-25 13:28:42 +02:00
parent aaf45467b2
commit cdcc158c03

View File

@@ -2085,7 +2085,6 @@ trackView::trackView( track * _track, trackContainerView * _tcv ) :
setAcceptDrops( true );
setAttribute( Qt::WA_DeleteOnClose, true );
setAttribute( Qt::WA_OpaquePaintEvent, true );
connect( m_track, SIGNAL( destroyedTrack() ), this, SLOT( close() ) );