Commit e5371ce2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: make playlist font less small by default

(cherry picked from commit 987c2953)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 2065847b
...@@ -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