From 4a9a7e2aa0f8c28f8dba29f9d94a8ba0adcabe47 Mon Sep 17 00:00:00 2001 From: erinn Date: Tue, 19 May 2020 16:22:13 -0700 Subject: [PATCH] update import paths --- styles/CwtchTextFieldStyle.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/styles/CwtchTextFieldStyle.qml b/styles/CwtchTextFieldStyle.qml index 9175e21..a131b28 100644 --- a/styles/CwtchTextFieldStyle.qml +++ b/styles/CwtchTextFieldStyle.qml @@ -1,5 +1,6 @@ import QtQuick.Controls.Styles 1.4 import QtQuick 2.7 +import "../theme" TextFieldStyle { id: root @@ -9,7 +10,7 @@ TextFieldStyle { background: Rectangle { radius: 2 - color: windowItem.cwtch_background_color - border.color: windowItem.cwtch_color + color: Theme.backgroundPaneColor + border.color: Theme.defaultButtonActiveColor//?? } }