diff options
| author | Peter Penz <[email protected]> | 2008-12-01 19:42:51 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-12-01 19:42:51 +0000 |
| commit | eb6febc75f725f19198dea1a91dc7535476a8572 (patch) | |
| tree | b9beec3f11eadf140d345d8e4006d2b6abd958c8 | |
| parent | a3624874d92cdab2e473dc95a899b395dc0f462f (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
| -rw-r--r-- | src/dolphincontroller.cpp | 2 |
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)); } } } |
