diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-06-10 18:19:19 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-20 14:27:39 -0700 |
commit | 28ab1f6413c7ec6e03ecd0cbdb682b261beba305 (patch) | |
tree | 1ec58cff3825de6e0c02d6e5b1c5103136def12a /qt-mobile | |
parent | b7e4b35cde1f1a6be01818eac94732186a1b99ab (diff) | |
download | subsurface-28ab1f6413c7ec6e03ecd0cbdb682b261beba305.tar.gz |
Better theme for dive list view
Set a rounded blue rectangle on the selected item.
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/main.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index ab147a2b4..a3da04d9c 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -69,7 +69,8 @@ ApplicationWindow { id: highlightBar Rectangle { width: parent.width; height: 50 - color: "#FFFF88" + color: "lightsteelblue" + radius: 5 y: diveListView.currentItem.y; Behavior on y { SpringAnimation { spring: 2; damping: 0.1 } } } |