]> git.sesse.net Git - vlc/commitdiff
Qt4: adjust default playlist font, hopefully looks better in windows
authorIlkka Ollakka <ileoo@videolan.org>
Fri, 2 Jul 2010 11:47:58 +0000 (14:47 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Fri, 2 Jul 2010 11:48:10 +0000 (14:48 +0300)
modules/gui/qt4/components/playlist/playlist_model.cpp

index fb74cf66fc46955e36e542ab6996fc704e964252..1326b4292cc76f4fdb099076708d07fc441ecc91 100644 (file)
@@ -353,7 +353,7 @@ QVariant PLModel::data( const QModelIndex &index, const int role ) const
     else if( role == Qt::FontRole )
     {
         QFont f;
-        f.setPointSize( f.pointSize() - 2 );
+        f.setPointSize( f.pointSize() - 1 );
         if( isCurrent( index ) )
             f.setBold( true );
         return QVariant( f );