]> git.sesse.net Git - vlc/commitdiff
Qt4: compressor and Spatializer widget margin shouldn't be 0
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 21 Sep 2010 23:12:35 +0000 (01:12 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 21 Sep 2010 23:12:35 +0000 (01:12 +0200)
modules/gui/qt4/components/extended_panels.cpp

index b7d6e3effb8096917a5b4a6ce00ce94467defb7c..3d363a1a466f289d7012f7a2fc34ae1b6a64f6a5 100644 (file)
@@ -1137,7 +1137,6 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent )
     smallFont.setPointSize( smallFont.pointSize() - 3 );
 
     QGridLayout *layout = new QGridLayout( this );
-    layout->setMargin( 0 );
 
     enableCheck = new QCheckBox( qtr( "Enable dynamic range compressor" ) );
     layout->addWidget( enableCheck, 0, 0, 1, NUM_CP_CTRL );
@@ -1292,7 +1291,6 @@ Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent )
     smallFont.setPointSize( smallFont.pointSize() - 3 );
 
     QGridLayout *layout = new QGridLayout( this );
-    layout->setMargin( 0 );
 
     enableCheck = new QCheckBox( qtr( "Enable spatializer" ) );
     layout->addWidget( enableCheck, 0, 0, 1, NUM_SP_CTRL );