summaryrefslogtreecommitdiffstats
path: root/src/controls/TableView.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-03-14 16:21:54 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-14 17:28:17 +0100
commitc29f0a978ac436cbc408d80059b541683e93ae85 (patch)
treeebcad1fc88b755dbfa6248c99ff8e1857acc8d2c /src/controls/TableView.qml
parentd5aa421d493eec143b91a9cfef12ce203d2da2cb (diff)
TableView: fix key navigation
Change-Id: I126257b71f3995dc7aed5b1cc9b37de77f8abdad Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'src/controls/TableView.qml')
-rw-r--r--src/controls/TableView.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml
index ca5ecb592..7da97ef86 100644
--- a/src/controls/TableView.qml
+++ b/src/controls/TableView.qml
@@ -348,8 +348,8 @@ ScrollView {
highlightFollowsCurrentItem: true
model: root.model
- Keys.onUpPressed: root.decrementCurrentIndex()
- Keys.onDownPressed: root.incrementCurrentIndex()
+ Keys.onUpPressed: root.__decrementCurrentIndex()
+ Keys.onDownPressed: root.__incrementCurrentIndex()
Keys.onPressed: {
if (event.key === Qt.Key_PageUp) {