oops, that 1|| was bogus of course

svn path=/trunk/KDE/kdelibs/; revision=1014445
This commit is contained in:
Marco Martin 2009-08-22 20:52:03 +00:00
parent 195e3a709d
commit 70f4e5aee6

View File

@ -665,7 +665,7 @@ void AppletHandle::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
// If the applet doesn't have a minimum size, calculate based on a
// minimum content area size of 16x16 (KIconLoader::SizeSmall)
if (1||min.isEmpty()) {
if (min.isEmpty()) {
min = m_applet->boundingRect().size() - m_applet->contentsRect().size();
min = QSizeF(KIconLoader::SizeSmall, KIconLoader::SizeSmall);
}