1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

Fix ColumnViewPreviewWidget minimum height on Mac.

This commit is contained in:
Teo Mrnjavac
2014-01-02 15:03:39 +01:00
parent 82605afb5e
commit 0e6cda9b83

View File

@@ -227,6 +227,8 @@ ColumnViewPreviewWidget::setQuery( const Tomahawk::query_ptr& query )
#ifndef Q_OS_MAC //we don't need to scale on OSX anyway
TomahawkUtils::DpiScaler dpi( this );
setMinimumHeight( dpi.scaledY( 400 ) );
#else
setMinimumHeight( 400 );
#endif
}