summaryrefslogtreecommitdiffstats
path: root/src/settingsui
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsui')
-rw-r--r--src/settingsui/locale/RegionSelect.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/settingsui/locale/RegionSelect.qml b/src/settingsui/locale/RegionSelect.qml
index cfa5e15..d27eb2a 100644
--- a/src/settingsui/locale/RegionSelect.qml
+++ b/src/settingsui/locale/RegionSelect.qml
@@ -109,18 +109,22 @@ Item {
id: country
Layout.preferredWidth: root.width * 0.5
font.pixelSize: pluginMain.valueFontSize
+ leftPadding: pluginMain.margin
+ rightPadding: pluginMain.margin
+ bottomPadding: 6
+ topPadding: 6
color: "white"
text: ""
placeholderText: "Search..."
placeholderTextColor: "white"
font.family: appFont
- font.styleName: "Light"
+ font.styleName: "Regular"
onTextChanged: LocaleFilter.filter = country.text
Layout.alignment: Qt.AlignVCenter
background: Rectangle {
color: "transparent"
border.color: viewSettings.borderColor
- border.width: 2
+ border.width: 1
}
}