diff options
author | Doris Verria <[email protected]> | 2025-03-19 19:51:04 +0100 |
---|---|---|
committer | Doris Verria <[email protected]> | 2025-03-20 08:47:54 +0000 |
commit | 18170399f2591a760a9efaedcb1465bd865ca590 (patch) | |
tree | aed1a1d322bf3665c966cc0245252187f9395c0d /templates/impl/PageIndicatorDelegate.qml | |
parent | 914bf77c777211ea930d606e3e03e473e818a3e6 (diff) |
Change-Id: I48aa3e694b2dbb83fe50bd7a6f84f793a0e2c47f
Reviewed-by: Richard Moe Gustavsen <[email protected]>
Diffstat (limited to 'templates/impl/PageIndicatorDelegate.qml')
-rw-r--r-- | templates/impl/PageIndicatorDelegate.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/impl/PageIndicatorDelegate.qml b/templates/impl/PageIndicatorDelegate.qml index 5085387..b36fe0f 100644 --- a/templates/impl/PageIndicatorDelegate.qml +++ b/templates/impl/PageIndicatorDelegate.qml @@ -13,7 +13,7 @@ StyleImage { pageIndicator.enabled && index === pageIndicator.currentIndex && "current", pageIndicator.enabled && pageIndicator.interactive && pressed && "pressed" ].filter(Boolean).join("_") || (pageIndicator.hovered ? "hovered" : "normal") - readonly property var config: Config.controls.pageindicatordelegate[__currentState].indicator || {} + readonly property var __config: Config.controls.pageindicatordelegate[__currentState].indicator || {} - imageConfig: config + imageConfig: __config } |