summaryrefslogtreecommitdiffstats
path: root/framework/qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml')
-rw-r--r--framework/qml/AutocompleteLineEdit.qml2
-rw-r--r--framework/qml/FocusComposer.qml2
-rw-r--r--framework/qml/TextField.qml2
3 files changed, 4 insertions, 2 deletions
diff --git a/framework/qml/AutocompleteLineEdit.qml b/framework/qml/AutocompleteLineEdit.qml
index a232ee68..a4d2e7b7 100644
--- a/framework/qml/AutocompleteLineEdit.qml
+++ b/framework/qml/AutocompleteLineEdit.qml
@@ -23,7 +23,7 @@ import QtQuick.Layouts 1.1
23import org.kde.kirigami 1.0 as Kirigami 23import org.kde.kirigami 1.0 as Kirigami
24import org.kube.framework 1.0 as Kube 24import org.kube.framework 1.0 as Kube
25 25
26Controls2.TextField { 26Kube.TextField {
27 id: textField 27 id: textField
28 28
29 property string searchTerm 29 property string searchTerm
diff --git a/framework/qml/FocusComposer.qml b/framework/qml/FocusComposer.qml
index f6bc3963..08b56ac5 100644
--- a/framework/qml/FocusComposer.qml
+++ b/framework/qml/FocusComposer.qml
@@ -190,7 +190,7 @@ Kube.Popup {
190 } 190 }
191 } 191 }
192 192
193 Controls2.TextField { 193 Kube.TextField {
194 id: subject 194 id: subject
195 195
196 Layout.fillWidth: true 196 Layout.fillWidth: true
diff --git a/framework/qml/TextField.qml b/framework/qml/TextField.qml
index 7542af65..3d104f6a 100644
--- a/framework/qml/TextField.qml
+++ b/framework/qml/TextField.qml
@@ -47,5 +47,7 @@ T.TextField {
47 47
48 background: Rectangle { 48 background: Rectangle {
49 color: Colors.viewBackgroundColor 49 color: Colors.viewBackgroundColor
50 border.width: 1
51 border.color: Colors.buttonColor
50 } 52 }
51} 53}