From ec1c4d18fc28e05df59061127ab1710f4773c01a Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Wed, 13 Feb 2013 21:38:21 +0100 Subject: [PATCH] only save if the KPluginInfo is valid (otherwise we have a dud) --- plasma/applet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plasma/applet.cpp b/plasma/applet.cpp index 50b72666d..511d07ad0 100644 --- a/plasma/applet.cpp +++ b/plasma/applet.cpp @@ -199,7 +199,7 @@ uint Applet::id() const void Applet::save(KConfigGroup &g) const { - if (d->transient) { + if (d->transient || !d->appletDescription.isValid()) { return; }