┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-12-01 19:42:51 +0000
committerPeter Penz <[email protected]>2008-12-01 19:42:51 +0000
commiteb6febc75f725f19198dea1a91dc7535476a8572 (patch)
treeb9beec3f11eadf140d345d8e4006d2b6abd958c8 /src
parenta3624874d92cdab2e473dc95a899b395dc0f462f (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/dolphincontroller.cpp2
1 files changed, 1 insertions, 1 deletions
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));
}
}
}