diff options
-rw-r--r-- | src/core/kconfig.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp index 92c05bae..f9257632 100644 --- a/src/core/kconfig.cpp +++ b/src/core/kconfig.cpp @@ -162,6 +162,10 @@ void KConfigPrivate::copyGroup(const QByteArray &source, const QByteArray &desti entry.bGlobal = true; } + if (flags & KConfigBase::Notify) { + entry.bNotify = true; + } + otherMap[newKey] = entry; } |