summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2012-05-30 19:15:28 -0300
committerHugo Parente Lima <hugo.lima@openbossa.org>2012-05-30 19:34:14 -0300
commitc82c23fd6f6dbc538c2cd4c62eade68894a853fd (patch)
tree66bca8ae21c0958d63eb6ccc4d10967787a9ca09
parente4808c9a4888971fecc1ff43ef19587273699afd (diff)
Blink the progress indicator outter circle, not the indicator itself on "pre page load" state.
Reviewed-by: Marcelo Lira
-rw-r--r--src/mobile/qml/StatusBarIndicator.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mobile/qml/StatusBarIndicator.qml b/src/mobile/qml/StatusBarIndicator.qml
index 6d287ee..4a842aa 100644
--- a/src/mobile/qml/StatusBarIndicator.qml
+++ b/src/mobile/qml/StatusBarIndicator.qml
@@ -57,8 +57,8 @@ Image {
repeat: true
interval: 500
onTriggered: {
- indicator.opacity = indicator.opacity === 1.0 ? 0.1 : 1.0;
+ progressIndicator.opacity = progressIndicator.opacity === 1.0 ? 0.0 : 1.0;
}
- onRunningChanged: if (!running) indicator.opacity = 1.0;
+ onRunningChanged: if (!running) progressIndicator.opacity = 1.0;
}
}