[vlc-commits] Qt: use a less small font on mediainfo.

Jean-Baptiste Kempf git at videolan.org
Sun Jan 29 23:44:58 CET 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jan 29 20:53:54 2012 +0100| [2d96c40a5ad6ea23c74a55ffb1091afda7b7f724] | committer: Jean-Baptiste Kempf

Qt: use a less small font on mediainfo.

It seems really unusable on win32

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2d96c40a5ad6ea23c74a55ffb1091afda7b7f724
---

 modules/gui/qt4/components/info_panels.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index 9c59775..47cba6d 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -64,7 +64,7 @@ MetaPanel::MetaPanel( QWidget *parent,
     metaLayout->setVerticalSpacing( 0 );
 
     QFont smallFont = QApplication::font();
-    smallFont.setPointSize( smallFont.pointSize() - 2 );
+    smallFont.setPointSize( smallFont.pointSize() - 1 );
     smallFont.setBold( true );
 
     int line = 0; /* Counter for GridLayout */



More information about the vlc-commits mailing list