Commit 987c2953 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: make playlist font less small by default

parent 2d96c40a
...@@ -372,7 +372,7 @@ QVariant PLModel::data( const QModelIndex &index, const int role ) const ...@@ -372,7 +372,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( __MAX( f.pointSize() - 1 + i_zoom, 4 ) ); f.setPointSize( __MAX( f.pointSize() + i_zoom, 4 ) );
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