From 5e69b750d03695a9c4523d8476f81a4e9322478b Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Mon, 20 Feb 2017 10:55:34 +0100 Subject: [PATCH] fix(ui/modules/Common/Form/ListForm): use `values` instead of `listForm` in `setTimeout` --- linphone-desktop/ui/modules/Common/Form/ListForm.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/ui/modules/Common/Form/ListForm.qml b/linphone-desktop/ui/modules/Common/Form/ListForm.qml index c8d95dcbd..83670af95 100644 --- a/linphone-desktop/ui/modules/Common/Form/ListForm.qml +++ b/linphone-desktop/ui/modules/Common/Form/ListForm.qml @@ -184,7 +184,7 @@ RowLayout { // // So, I choose to run a callback executed after this // internal event. - Utils.setTimeout(listForm, 0, function () { + Utils.setTimeout(values, 0, function () { textInput.forceActiveFocus() }) }