From eb7cb933b8ba592f9086c5392e246aebbf921d7a Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig <jens.bache-wiig@digia.com> Date: Tue, 28 May 2013 09:30:26 +0200 Subject: [PATCH] Fix typo in TableViewStyle Change-Id: I0b4a917500ec7a520ebd38a4158e707e4dd80c9c Reviewed-by: Caroline Chao <caroline.chao@digia.com> Reviewed-by: J-P Nurmi <jpnurmi@digia.com> --- src/styles/Base/TableViewStyle.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/Base/TableViewStyle.qml b/src/styles/Base/TableViewStyle.qml index 6d4f9feb9..f44893f69 100644 --- a/src/styles/Base/TableViewStyle.qml +++ b/src/styles/Base/TableViewStyle.qml @@ -103,12 +103,12 @@ ScrollViewStyle { anchors.bottom: parent.bottom width: parent.width height: 1 - color: styleData.elected ? Qt.darker(selectedColor, 1.4) : "transparent" + color: styleData.selected ? Qt.darker(selectedColor, 1.4) : "transparent" } Rectangle { anchors.top: parent.top width: parent.width ; height: 1 - color: styleData.elected ? Qt.darker(selectedColor, 1.1) : "transparent" + color: styleData.selected ? Qt.darker(selectedColor, 1.1) : "transparent" } } -- GitLab