Fix the kwin KCM to read cascaded configs
REVIEW: 106498
This commit is contained in:
parent
371a29096b
commit
dba3ae6400
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ public:
|
|||
KWinOptions::KWinOptions(QWidget *parent, const QVariantList &)
|
||||
: KCModule(KWinOptionsFactory::componentData(), parent)
|
||||
{
|
||||
mConfig = new KConfig("kwinrc", KConfig::IncludeGlobals);
|
||||
mConfig = new KConfig("kwinrc");
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
layout->setMargin(0);
|
||||
|
@ -182,7 +182,7 @@ void KWinOptions::moduleChanged(bool state)
|
|||
KActionsOptions::KActionsOptions(QWidget *parent, const QVariantList &)
|
||||
: KCModule(KWinOptionsFactory::componentData(), parent)
|
||||
{
|
||||
mConfig = new KConfig("kwinrc", KConfig::IncludeGlobals);
|
||||
mConfig = new KConfig("kwinrc");
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
layout->setMargin(0);
|
||||
|
|
Loading…
Reference in a new issue