aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@qt.io>2016-11-18 15:44:06 +0100
committerAndy Shaw <andy.shaw@qt.io>2016-11-23 13:54:53 +0000
commit1ba0613309439f778b4b4e955131d80936490371 (patch)
tree80db4e27ea912d3b65f4d2f66e2394efc0617898 /src
parentc8d177387ead0b01badf7329beaf38a3950be90b (diff)
Use the QLocale's decimal point setting for the digipad
Change-Id: I8a42546e1a520886f2dab417d9ae43037f1d7012 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/virtualkeyboard/content/layouts/en_GB/digits.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/virtualkeyboard/content/layouts/en_GB/digits.qml b/src/virtualkeyboard/content/layouts/en_GB/digits.qml
index 16eb1be8..5a59d3f3 100644
--- a/src/virtualkeyboard/content/layouts/en_GB/digits.qml
+++ b/src/virtualkeyboard/content/layouts/en_GB/digits.qml
@@ -100,8 +100,10 @@ KeyboardLayout {
text: "0"
}
Key {
- key: Qt.Key_Period
- text: "."
+ // The decimal key, if it is not "," then we fallback to
+ // "." in case it is an unhandled different result
+ key: Qt.locale().decimalPoint === "," ? Qt.Key_Comma : Qt.Key_Period
+ text: Qt.locale().decimalPoint === "," ? "," : "."
}
EnterKey {}
}