diff --git a/corona.cpp b/corona.cpp index cc15e2239..811b24b7b 100644 --- a/corona.cpp +++ b/corona.cpp @@ -96,8 +96,11 @@ public: { foreach (Containment *c, containments) { // we need to tell each containment that immutability has been altered - // TODO: should we tell the applets too? c->updateConstraints(ImmutableConstraint); + // tell the applets too + foreach (Applet *a, c->applets()) { + a->constraintsUpdated(ImmutableConstraint); + } } }