diff options
| author | J-P Nurmi <jpnurmi@digia.com> | 2013-03-14 16:21:54 +0100 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-03-14 17:28:17 +0100 |
| commit | c29f0a978ac436cbc408d80059b541683e93ae85 (patch) | |
| tree | ebcad1fc88b755dbfa6248c99ff8e1857acc8d2c /src/controls/TableView.qml | |
| parent | d5aa421d493eec143b91a9cfef12ce203d2da2cb (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.qml | 4 |
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) { |
