added spacing below FX-bank-selector

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@955 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-05-04 22:34:58 +00:00
parent 23e1a368bd
commit 8caa277baf
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
2008-05-04 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/gui/fx_mixer_view.cpp:
added spacing below FX-bank-selector
* include/effect_select_dialog.h:
* include/plugin.h:
* src/gui/effect_select_dialog.cpp:

View File

@@ -192,11 +192,13 @@ fxMixerView::fxMixerView() :
QToolButton * btn = new QToolButton;
btn->setText( QString( 'A'+j ) );
btn->setCheckable( TRUE );
btn->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
btn->setSizePolicy( QSizePolicy::Preferred,
QSizePolicy::Expanding );
l->addWidget( btn );
g->addButton( btn, j );
btn->setChecked( j == 0);
}
l->addSpacing( 10 );
ml->addLayout( l );
connect( g, SIGNAL( buttonClicked( int ) ),
m_fxLineBanks, SLOT( setCurrentIndex( int ) ) );