Remove margins around dialogs
svn path=/trunk/KDE/kdebase/workspace/; revision=669265
This commit is contained in:
parent
9334e70862
commit
dda35ceb96
3 changed files with 4 additions and 0 deletions
|
@ -40,6 +40,7 @@ KWinEffectsConfig::KWinEffectsConfig(QWidget *parent, const QStringList &)
|
|||
{
|
||||
mPluginSelector = new KPluginSelector(this);
|
||||
QHBoxLayout* layout = new QHBoxLayout;
|
||||
layout->setMargin(0);
|
||||
layout->addWidget(mPluginSelector);
|
||||
setLayout(layout);
|
||||
|
||||
|
|
|
@ -93,6 +93,7 @@ KWinOptions::KWinOptions(QWidget *parent, const QStringList &)
|
|||
mConfig = new KConfig( "kwinrc", KConfig::IncludeGlobals );
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
layout->setMargin(0);
|
||||
tab = new QTabWidget(this);
|
||||
layout->addWidget(tab);
|
||||
|
||||
|
|
|
@ -41,6 +41,8 @@ KCMRules::KCMRules( QWidget *parent, const QStringList & )
|
|||
, config( "kwinrulesrc" )
|
||||
{
|
||||
QVBoxLayout *layout = new QVBoxLayout( this );
|
||||
layout->setMargin(0);
|
||||
|
||||
widget = new KCMRulesList( this );
|
||||
layout->addWidget( widget );
|
||||
connect( widget, SIGNAL( changed( bool )), SLOT( moduleChanged( bool )));
|
||||
|
|
Loading…
Reference in a new issue