Commit 8fc10b42 authored by Ilkka Ollakka's avatar Ilkka Ollakka

Qt4: adjust default playlist font, hopefully looks better in windows

parent a1b60328
...@@ -353,7 +353,7 @@ QVariant PLModel::data( const QModelIndex &index, const int role ) const ...@@ -353,7 +353,7 @@ QVariant PLModel::data( const QModelIndex &index, const int role ) const
else if( role == Qt::FontRole ) else if( role == Qt::FontRole )
{ {
QFont f; QFont f;
f.setPointSize( f.pointSize() - 2 ); f.setPointSize( f.pointSize() - 1 );
if( isCurrent( index ) ) if( isCurrent( index ) )
f.setBold( true ); f.setBold( true );
return QVariant( f ); return QVariant( f );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment