From f505d063e77f7623a714a1a552d79a2ede6c0ac5 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 18 Sep 2008 14:58:06 +0000 Subject: [PATCH] and if it isn't acting as a containment, but an applet, then use the standard configuration mechanism as provided by Applet svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=862308 --- containment.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/containment.cpp b/containment.cpp index 9cbe7b9da..e017a0a39 100644 --- a/containment.cpp +++ b/containment.cpp @@ -1395,6 +1395,8 @@ void Containment::showConfigurationInterface() { if (isContainment()) { emit configureRequested(); + } else { + Applet::showConfigurationInterface(); } }