diff --git a/clients/icewm/config/config.cpp b/clients/icewm/config/config.cpp index 6fd03f5bae..20c4072bde 100644 --- a/clients/icewm/config/config.cpp +++ b/clients/icewm/config/config.cpp @@ -133,6 +133,8 @@ IceWMConfig::IceWMConfig( KConfig* conf, QWidget* parent ) // Watch the icewm theme directory for theme additions/removals KDirWatch::self()->addDir(localThemeString); connect( KDirWatch::self(), SIGNAL(dirty(const QString&)), this, SLOT(findIceWMThemes()) ); + connect( KDirWatch::self(), SIGNAL(created(const QString&)), this, SLOT(findIceWMThemes()) ); + connect( KDirWatch::self(), SIGNAL(deleted(const QString&)), this, SLOT(findIceWMThemes()) ); // Set the konqui link url QString urlThemeString = QString("file://") + localThemeString;