[vlc-commits] Qt: use a less small font on mediainfo.
Jean-Baptiste Kempf
git at videolan.org
Sun Jan 29 23:49:26 CET 2012
vlc/vlc-2.0 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jan 29 20:53:54 2012 +0100| [2065847b71d109a38c592c4540039e0831c07e5d] | committer: Jean-Baptiste Kempf
Qt: use a less small font on mediainfo.
It seems really unusable on win32
(cherry picked from commit 2d96c40a5ad6ea23c74a55ffb1091afda7b7f724)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=2065847b71d109a38c592c4540039e0831c07e5d
---
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 849c7cd..cdcc6ba 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