aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/PageIndicator.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-29 22:03:07 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-30 14:32:45 +0000
commit542dd7b77a236fef03e5569e44669fad6db0485d (patch)
treefb039a24e51161b8c0891b64d44945b1d8a77b85 /src/imports/controls/PageIndicator.qml
parent45cf8b973b9160af5b1ef01194cdc820283c0d56 (diff)
Add PageIndicator::interactive
Change-Id: Iecb6d855d1c7710901925097ad4e03006d58309c Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/PageIndicator.qml')
-rw-r--r--src/imports/controls/PageIndicator.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/controls/PageIndicator.qml b/src/imports/controls/PageIndicator.qml
index 55e9a40e..408380d8 100644
--- a/src/imports/controls/PageIndicator.qml
+++ b/src/imports/controls/PageIndicator.qml
@@ -58,7 +58,7 @@ T.PageIndicator {
radius: width / 2
color: control.color
- opacity: index === currentIndex ? 0.95 : 0.45
+ opacity: index === currentIndex ? 0.95 : pressed ? 0.7 : 0.45
Behavior on opacity { OpacityAnimator { duration: 100 } }
}
//! [delegate]