SVN commit 735913 by whiting: don't crash when hovering over the panel plasmoids I'm fairly confident the assertion that used to be here is bogus because of panels not belonging to the desktop containment CCMAIL: aseigo@kde.org M +1 -1 containment.cpp --- trunk/KDE/kdebase/workspace/libs/plasma/containment.cpp #735912:735913 @@ -516,7 +516,7 @@ // Otherwise we're watching something we shouldn't be... Q_ASSERT(applet!=0); - Q_ASSERT(d->applets.contains(applet)); + if (!d->applets.contains(applet)) return false; switch (event->type()) {