diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-12-04 16:10:51 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-12-04 16:17:53 -0800 |
commit | 2c3b12564a2e14ba6fcd0cc783a297b7a01bcf93 (patch) | |
tree | 829fe71cccc88720b2fc0b61019ba5a8917fe2bf /imports | |
parent | 1261ac1f1f1f2e4d659159f4ce51322f1d585128 (diff) |
symbols: qml: add missing special characterhalibut_8.0.6halibut_8.0.5halibut_8.0.4halibut/8.0.6halibut/8.0.5halibut/8.0.48.0.68.0.58.0.4halibut
Add missing '_' from the special keyboard
Bug-AGL: SPEC-3001
Change-Id: Id2f5c40ff60ed5a6f68031547344450103c69450
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'imports')
-rw-r--r-- | imports/agl-demo-controls/Symbols.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imports/agl-demo-controls/Symbols.qml b/imports/agl-demo-controls/Symbols.qml index 5ecffe9..77405a5 100644 --- a/imports/agl-demo-controls/Symbols.qml +++ b/imports/agl-demo-controls/Symbols.qml @@ -46,7 +46,7 @@ AbstractKeyboard { } Repeater { - model: ['?', '#', '%', '&', '*', '-', '+', '(', ')'] + model: ['?', '#', '%', '&', '*', '-', '_', '+', '(', ')'] delegate: Key { text: model.modelData Layout.preferredWidth: 2 |