summaryrefslogtreecommitdiffstats
path: root/framework/qml/AutocompleteLineEdit.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/AutocompleteLineEdit.qml')
-rw-r--r--framework/qml/AutocompleteLineEdit.qml7
1 files changed, 3 insertions, 4 deletions
diff --git a/framework/qml/AutocompleteLineEdit.qml b/framework/qml/AutocompleteLineEdit.qml
index 64e5940f..c9b8e708 100644
--- a/framework/qml/AutocompleteLineEdit.qml
+++ b/framework/qml/AutocompleteLineEdit.qml
@@ -21,7 +21,6 @@ import QtQuick.Controls 2.0 as Controls2
21import QtQuick.Layouts 1.1 21import QtQuick.Layouts 1.1
22 22
23import org.kde.kirigami 1.0 as Kirigami 23import org.kde.kirigami 1.0 as Kirigami
24import org.kube.components.theme 1.0 as KubeTheme
25 24
26Controls2.TextField { 25Controls2.TextField {
27 id: textField 26 id: textField
@@ -93,8 +92,8 @@ Controls2.TextField {
93 height: listView.contentHeight 92 height: listView.contentHeight
94 width: textField.width 93 width: textField.width
95 94
96 border.color: KubeTheme.Colors.textColor 95 border.color: Kube.Colors.textColor
97 color: KubeTheme.Colors.backgroundColor 96 color: Kube.Colors.backgroundColor
98 97
99 radius: 5 98 radius: 5
100 ListView { 99 ListView {
@@ -132,7 +131,7 @@ Controls2.TextField {
132 131
133 Text{ 132 Text{
134 text: model.text 133 text: model.text
135 color: listDelegate.checked ? KubeTheme.Colors.highlightedTextColor : KubeTheme.Colors.textColor 134 color: listDelegate.checked ? Kube.Colors.highlightedTextColor : Kube.Colors.textColor
136 } 135 }
137 } 136 }
138 } 137 }