From 7031e85adf44355b56a5ec740ab26a7eb3d8f740 Mon Sep 17 00:00:00 2001 From: Mitch Curtis Date: Fri, 27 Nov 2015 09:56:12 +0100 Subject: Remove Theme Given the presence of alternative styles, we'd like to focus on making the default style as performant as possible. Removing Theme usage is a step towards this. Change-Id: I8f76dc98442e6c02703885591a44758f40c7a362 Reviewed-by: J-P Nurmi --- src/imports/controls/PageIndicator.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/imports/controls/PageIndicator.qml') diff --git a/src/imports/controls/PageIndicator.qml b/src/imports/controls/PageIndicator.qml index e1361b83..e569a0de 100644 --- a/src/imports/controls/PageIndicator.qml +++ b/src/imports/controls/PageIndicator.qml @@ -35,7 +35,6 @@ ****************************************************************************/ import QtQuick 2.6 -import Qt.labs.controls 1.0 import Qt.labs.templates 1.0 as T T.PageIndicator { @@ -55,7 +54,7 @@ T.PageIndicator { implicitHeight: 8 radius: width / 2 - color: control.Theme.shadowColor // TODO + color: "#28282a" // TODO opacity: index === currentIndex ? 0.95 : pressed ? 0.7 : 0.45 Behavior on opacity { OpacityAnimator { duration: 100 } } -- cgit v1.2.3