From: Peter Penz Date: Mon, 1 Dec 2008 19:42:51 +0000 (+0000) Subject: Fixed regression that triggering of items with the keyboard did not work anymore... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/eb6febc75f725f19198dea1a91dc7535476a8572 Fixed regression that triggering of items with the keyboard did not work anymore. This regression has been introduced because of checking the mouse buttons in DolphinController::triggerItem()... CCBUG: 176621 svn path=/trunk/KDE/kdebase/apps/; revision=891341 --- diff --git a/src/dolphincontroller.cpp b/src/dolphincontroller.cpp index fe8c426f3..ffa245f4e 100644 --- a/src/dolphincontroller.cpp +++ b/src/dolphincontroller.cpp @@ -134,7 +134,7 @@ void DolphinController::handleKeyPressEvent(QKeyEvent* event) if (trigger) { const QModelIndexList indexList = selModel->selectedIndexes(); foreach (const QModelIndex& index, indexList) { - triggerItem(index); + emit itemTriggered(itemForIndex(index)); } } }