From cc626be7e0e231ea1e6597bb72e758f80a9a8f25 Mon Sep 17 00:00:00 2001 From: Alex Merry Date: Thu, 27 Sep 2007 21:50:44 +0000 Subject: [PATCH] Make sure we actually add the applets to the new layout when it changes svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=718004 --- containment.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/containment.cpp b/containment.cpp index 356f91ce1..cd928a63b 100644 --- a/containment.cpp +++ b/containment.cpp @@ -424,6 +424,7 @@ void Containment::setFormFactor(FormFactor formFactor) } foreach (Applet* applet, d->applets) { + d->layout->addItem(applet); applet->updateConstraints(); } }