mobile-widgets/qml: settings Control.TextEdit -> TemplateTextEdit

Replace Control.TextEdit with TemplateTextEdit, in order to use
common font/color scheme.

Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
jan Iversen 2020-01-15 15:41:26 +01:00 committed by Dirk Hohndel
parent ee1d5ba94e
commit 96ec585179

View file

@ -305,12 +305,10 @@ Kirigami.ScrollablePage {
Layout.preferredWidth: gridWidth * 0.75
}
Controls.TextField {
TemplateTextField {
id: distanceThreshold
text: PrefLocationService.distance_threshold
font.pointSize: subsurfaceTheme.regularPointSize
Layout.preferredWidth: gridWidth * 0.25
color: subsurfaceTheme.textColor
onEditingFinished: {
PrefLocationService.distance_threshold = distanceThreshold.text
}
@ -321,12 +319,10 @@ Kirigami.ScrollablePage {
Layout.preferredWidth: gridWidth * 0.75
}
Controls.TextField {
TemplateTextField {
id: timeThreshold
text: PrefLocationService.time_threshold / 60
font.pointSize: subsurfaceTheme.regularPointSize
Layout.preferredWidth: gridWidth * 0.25
color: subsurfaceTheme.textColor
onEditingFinished: {
PrefLocationService.time_threshold = timeThreshold.text * 60
}