1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-15 10:33:59 +02:00

What happens if we never scroll the ColumnViewPreviewWidget?

This commit is contained in:
Teo Mrnjavac
2014-01-02 14:08:41 +01:00
parent 8bbc7ce607
commit 82605afb5e

View File

@@ -486,7 +486,8 @@ ColumnView::fixScrollBars()
if ( sb && sb->orientation() == Qt::Vertical )
{
sb->setSingleStep( 6 );
connect( sb, SIGNAL( valueChanged( int ) ), SLOT( onScrollBarChanged( int ) ), Qt::UniqueConnection );
//FIXME: The preview widget should probably never scroll. Do we even need the following hack?
//connect( sb, SIGNAL( valueChanged( int ) ), SLOT( onScrollBarChanged( int ) ), Qt::UniqueConnection );
break;
}