aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-03-13 10:10:46 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2017-03-13 10:19:28 +0000
commitf722caec667342b0579aa894858ad553c70e55e0 (patch)
tree7526180cc672db51410449a579795e79beae31d8 /examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml
parent2f8e91e37d327c8dacd5c137e4198f274898f72a (diff)
Wearable: add style for PageIndicator
Change-Id: Id8f4948372f394ec5dbb4c2268f453724f65b594 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml')
-rw-r--r--examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml b/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml
index b66a149b..7b9cb916 100644
--- a/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml
+++ b/examples/quickcontrols2/wearable/qml/Weather/WeatherPage.qml
@@ -335,22 +335,6 @@ Item {
count: svWeatherContainer.count
currentIndex: svWeatherContainer.currentIndex
-
- delegate: Rectangle {
- implicitWidth: 8
- implicitHeight: 8
-
- radius: width / 2
- color: UIStyle.colorQtGray3
-
- opacity: index === pgWeatherIndicator.currentIndex ? 1.0 : 0.35
-
- Behavior on opacity {
- OpacityAnimator {
- duration: 100
- }
- }
- }
}
Component.onCompleted: {
WeatherData.requestWeatherData(wDataCntr)