summaryrefslogtreecommitdiff
path: root/src/controls/ScrollView.qml
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-03-26 13:50:53 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-28 08:38:22 +0100
commite801c64d764fa69f0447728ba5dd38c180f61aca (patch)
treedbdea1fd444dc80f8d70f8f32cd01cebcfa6372a /src/controls/ScrollView.qml
parentd0e4ecc283f464696f38c4f091cb2660ddaa0f94 (diff)
downloadqtquickcontrols-e801c64d764fa69f0447728ba5dd38c180f61aca.tar.gz
Fix broken highlightOnFocus for ScrollView
Change-Id: Idfd9c14b0b955cc9ccfc19ebd51686909d04875d Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com> Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/ScrollView.qml')
-rw-r--r--src/controls/ScrollView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/ScrollView.qml b/src/controls/ScrollView.qml
index c681901d..7a63a3e4 100644
--- a/src/controls/ScrollView.qml
+++ b/src/controls/ScrollView.qml
@@ -281,6 +281,6 @@ FocusScope {
clip: true
}
}
- FocusFrame { visible: highlightOnFocus && area.activeFocus }
+ FocusFrame { visible: highlightOnFocus && root.activeFocus }
}
}