summaryrefslogtreecommitdiffstats
path: root/templates/PageIndicator.qml
diff options
context:
space:
mode:
Diffstat (limited to 'templates/PageIndicator.qml')
-rw-r--r--templates/PageIndicator.qml22
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/PageIndicator.qml b/templates/PageIndicator.qml
index fbc1d85..eb0a3c2 100644
--- a/templates/PageIndicator.qml
+++ b/templates/PageIndicator.qml
@@ -10,23 +10,23 @@ T.PageIndicator {
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
implicitContentHeight + topPadding + bottomPadding)
- spacing: config.spacing || 0
+ spacing: __config.spacing || 0
- topPadding: config.topPadding || 0
- bottomPadding: config.bottomPadding || 0
- leftPadding: config.leftPadding || 0
- rightPadding: config.rightPadding || 0
+ topPadding: __config.topPadding || 0
+ bottomPadding: __config.bottomPadding || 0
+ leftPadding: __config.leftPadding || 0
+ rightPadding: __config.rightPadding || 0
- topInset: -config.topInset || 0
- bottomInset: -config.bottomInset || 0
- leftInset: -config.leftInset || 0
- rightInset: -config.rightInset || 0
+ topInset: -__config.topInset || 0
+ bottomInset: -__config.bottomInset || 0
+ leftInset: -__config.leftInset || 0
+ rightInset: -__config.rightInset || 0
readonly property string __currentState: [
!control.enabled && "disabled",
control.enabled && control.hovered && "hovered",
].filter(Boolean).join("_") || "normal"
- readonly property var config: Config.controls.pageindicator[__currentState] || {}
+ readonly property var __config: Config.controls.pageindicator[__currentState] || {}
delegate: PageIndicatorDelegate {
pageIndicator: control
@@ -42,6 +42,6 @@ T.PageIndicator {
}
background: StyleImage {
- imageConfig: control.config.background
+ imageConfig: control.__config.background
}
}