From 960a78ae6231767a34a6e4de76bf4fa28ff401f1 Mon Sep 17 00:00:00 2001 From: Liang Qi <liang.qi@digia.com> Date: Mon, 27 May 2013 11:32:39 +0200 Subject: [PATCH] The function was moved to QtDeclarative It is about default behavior for QQuickWindow, when there is no any activeFocusItem in the whole window, Tab/BackTab key could help you to focus the item in the tab focus chain. Change-Id: Iccd770794e2f99a9a74c3a11f0ed278264a02d9e Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com> --- src/controls/ApplicationWindow.qml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/controls/ApplicationWindow.qml b/src/controls/ApplicationWindow.qml index f2e181a58..602661a30 100644 --- a/src/controls/ApplicationWindow.qml +++ b/src/controls/ApplicationWindow.qml @@ -125,14 +125,6 @@ Window { /*! \internal */ default property alias data: contentArea.data - /*! \internal */ - Binding { - target: contentItem - property: "activeFocusOnTab" - when: activeFocusItem - value: activeFocusItem ? ( (activeFocusItem != contentItem) ? !activeFocusItem.activeFocusOnTab : true ) : false - } - color: syspal.window SystemPalette {id: syspal} -- GitLab