From eb6febc75f725f19198dea1a91dc7535476a8572 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Mon, 1 Dec 2008 19:42:51 +0000 Subject: [PATCH] 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 --- src/dolphincontroller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } } } -- 2.47.3