diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
commit | 5755ad47145d2985ba74354961b4127d82c516f6 (patch) | |
tree | aa6af562b7e587be895ff5a4355270f82f3ea180 /framework/qml/AutocompleteLineEdit.qml | |
parent | e78224a7d9ccf70aadde8c0bff1cab72e8cb7438 (diff) | |
download | kube-5755ad47145d2985ba74354961b4127d82c516f6.tar.gz kube-5755ad47145d2985ba74354961b4127d82c516f6.zip |
A single framework plugin
Diffstat (limited to 'framework/qml/AutocompleteLineEdit.qml')
-rw-r--r-- | framework/qml/AutocompleteLineEdit.qml | 7 |
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 | |||
21 | import QtQuick.Layouts 1.1 | 21 | import QtQuick.Layouts 1.1 |
22 | 22 | ||
23 | import org.kde.kirigami 1.0 as Kirigami | 23 | import org.kde.kirigami 1.0 as Kirigami |
24 | import org.kube.components.theme 1.0 as KubeTheme | ||
25 | 24 | ||
26 | Controls2.TextField { | 25 | Controls2.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 | } |