SVN commit 1210314 by mart: kill the rubberband when a context event happens BUG:261614 M +4 -0 iconview.cpp --- trunk/KDE/kdebase/apps/plasma/applets/folderview/iconview.cpp #1210313:1210314 @@ -2022,7 +2022,11 @@ // Let the event propagate to the parent widget event->ignore(); } + if (m_rubberBand.isValid()) { + markAreaDirty(m_rubberBand); + m_rubberBand = QRect(); } +} void IconView::dragEnterEvent(QGraphicsSceneDragDropEvent *event) {