summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/AutocompleteLineEdit.qml2
-rw-r--r--framework/qml/FocusComposer.qml2
-rw-r--r--framework/qml/TextField.qml2
-rw-r--r--framework/qmldir1
4 files changed, 5 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}
diff --git a/framework/qmldir b/framework/qmldir
index 7b1f0be6..715f63dd 100644
--- a/framework/qmldir
+++ b/framework/qmldir
@@ -17,6 +17,7 @@ Button 1.0 Button.qml
17Popup 1.0 Popup.qml 17Popup 1.0 Popup.qml
18ComboBox 1.0 ComboBox.qml 18ComboBox 1.0 ComboBox.qml
19PositiveButton 1.0 PositiveButton.qml 19PositiveButton 1.0 PositiveButton.qml
20TextField 1.0 TextField.qml
20singleton Colors 1.0 Colors.qml 21singleton Colors 1.0 Colors.qml
21singleton Icons 1.0 Icons.qml 22singleton Icons 1.0 Icons.qml
22singleton Units 1.0 Units.qml 23singleton Units 1.0 Units.qml