SVN commit 1196275 by aseigo: fix clicked painting when set to double click, patch by Lindsay Roberts BUG:256297 M +7 -0 iconview.cpp --- trunk/KDE/kdebase/apps/plasma/applets/folderview/iconview.cpp #1196274:1196275 @@ -1837,7 +1837,12 @@ else { markAreaDirty(visualRect(index)); } + + if (!(event->modifiers() & (Qt::ControlModifier | Qt::ShiftModifier)) && + KGlobalSettings::singleClick()) { m_pressedIndex = index; + } + m_buttonDownPos = pos; return; } @@ -1932,6 +1937,8 @@ return; } + m_pressedIndex = index; + // Activate the item emit activated(index);