[vlc-commits] Qt, effects: improve readability

Jean-Baptiste Kempf git at videolan.org
Fri Apr 22 17:45:42 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Apr 22 17:45:22 2011 +0200| [6ea360add1c98138d7e0c3f2e4cd88bddf2b088d] | committer: Jean-Baptiste Kempf

Qt, effects: improve readability

Close #4297

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

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

diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index ad759c8..86f2621 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -1153,7 +1153,7 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent )
            : QWidget( _parent ) , p_intf( _p_intf )
 {
     QFont smallFont = QApplication::font();
-    smallFont.setPointSize( smallFont.pointSize() - 3 );
+    smallFont.setPointSize( smallFont.pointSize() - 2 );
 
     QGridLayout *layout = new QGridLayout( this );
 
@@ -1307,7 +1307,7 @@ Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent )
             : QWidget( _parent ) , p_intf( _p_intf )
 {
     QFont smallFont = QApplication::font();
-    smallFont.setPointSize( smallFont.pointSize() - 3 );
+    smallFont.setPointSize( smallFont.pointSize() - 2 );
 
     QGridLayout *layout = new QGridLayout( this );
 



More information about the vlc-commits mailing list