SVN commit 814314 by rjarosz: Add hack that emits kcfg signals so Kopete can update user intefrace. KCModule::save() doesn't emit kcfg signals and I didn't find BIC compatible way to make it to. M +6 -0 chatwindowconfig.cpp --- trunk/KDE/kdenetwork/kopete/kopete/config/chatwindow/chatwindowconfig.cpp #814313:814314 @@ -265,6 +265,12 @@ if (item) KEmoticons::setTheme( item->text() ); + // Ugly hacks, this will emit the kcfg signals + appearanceSettings->setChatTextColor(m_colorsUi.kcfg_chatTextColor->color()); + appearanceSettings->setUseEmoticons(m_emoticonsUi.kcfg_useEmoticons->isChecked()); + settings->setHighlightForegroundColor(m_colorsUi.kcfg_highlightForegroundColor->color()); + settings->setChatBgOverride(m_colorsUi.kcfg_chatBgOverride->isChecked()); + appearanceSettings->writeConfig(); settings->writeConfig(); m_styleChanged = false;