Fix config dialog of Aurorae decorations

Install the layout on the dialog not on the KCM.
This commit is contained in:
Martin Gräßlin 2014-02-21 12:12:05 +01:00
parent b901928801
commit b8f9fb254f

View file

@ -370,12 +370,12 @@ void KWinDecorationModule::slotConfigureDecoration()
dlg->setWindowTitle(i18n("Decoration Options"));
KWinAuroraeConfigForm *form = new KWinAuroraeConfigForm(dlg);
form->enableNoSideBorderSupport(index.data(DecorationModel::TypeRole).toInt() == DecorationModelData::QmlDecoration);
setLayout(new QVBoxLayout);
dlg->setLayout(new QVBoxLayout);
QDialogButtonBox* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, dlg.data());
connect(buttons, SIGNAL(accepted()), dlg, SLOT(accept()));
connect(buttons, SIGNAL(rejected()), dlg, SLOT(reject()));
layout()->addWidget(form);
layout()->addWidget(buttons);
dlg->layout()->addWidget(form);
dlg->layout()->addWidget(buttons);
form->borderSizesCombo->setCurrentIndex(index.data(DecorationModel::BorderSizeRole).toInt());
form->buttonSizesCombo->setCurrentIndex(index.data(DecorationModel::ButtonSizeRole).toInt());