Merge pull request #2710 from Umcaruje/fxmixerpad

Get rid of mixer and effects chain padding
This commit is contained in:
Umcaruje
2016-04-01 10:40:35 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -69,6 +69,9 @@ FxMixerView::FxMixerView() :
// main-layout
QHBoxLayout * ml = new QHBoxLayout;
// Set margins
ml->setContentsMargins( 0, 4, 0, 0 );
// Channel area
m_channelAreaWidget = new QWidget;
chLayout = new QHBoxLayout( m_channelAreaWidget );

View File

@@ -40,7 +40,7 @@ EffectRackView::EffectRackView( EffectChain* model, QWidget* parent ) :
ModelView( NULL, this )
{
QVBoxLayout* mainLayout = new QVBoxLayout( this );
mainLayout->setMargin( 5 );
mainLayout->setMargin( 0 );
m_effectsGroupBox = new GroupBox( tr( "EFFECTS CHAIN" ) );
mainLayout->addWidget( m_effectsGroupBox );