]> git.sesse.net Git - vlc/commitdiff
Qt4 - Make the interface a bit smaller.
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 16 Dec 2007 05:01:25 +0000 (05:01 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 16 Dec 2007 05:01:25 +0000 (05:01 +0000)
modules/gui/qt4/components/interface_widgets.cpp

index ccfc4db23335e40258aa79644422c8c0ce51f54a..f78e9fda278171600e4b39ceefeb8edca6c16466 100644 (file)
@@ -378,7 +378,11 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
 {
     controlLayout = new QGridLayout( this );
     controlLayout->setSpacing( 0 );
-    //controlLayout->setMargin( 0 );
+#if QT43
+    controlLayout->setContentsMargins( 9, 6, 9, 6 );
+#else
+    controlLayout->setMargin( 6 );
+#endif
 
     setSizePolicy( QSizePolicy::Preferred , QSizePolicy::Maximum );