if we are not displaying the default theme we don't care if it changes

svn path=/trunk/KDE/kdelibs/; revision=971592
This commit is contained in:
Marco Martin 2009-05-22 20:47:02 +00:00
parent bca2659a0e
commit 9a2967bd81

View File

@ -367,6 +367,11 @@ class SvgPrivate
void themeChanged()
{
//if we're displaying another theme we don't care if the default one changed
if (theme != Plasma::Theme::defaultTheme()) {
return;
}
// check if new theme svg wants colorscheme applied
bool wasApplyColors = applyColors;
checkApplyColorHint();