diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml
index ca5ecb592593516953f16fc2f25f30e6a8cb8a93..7da97ef86f42ee49b688cec20eb9491fd925898c 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) {