From 2c3b12564a2e14ba6fcd0cc783a297b7a01bcf93 Mon Sep 17 00:00:00 2001
From: Matt Ranostay <matt.ranostay@konsulko.com>
Date: Wed, 4 Dec 2019 16:10:51 -0800
Subject: [PATCH] symbols: qml: add missing special character

Add missing '_' from the special keyboard

Bug-AGL: SPEC-3001
Change-Id: Id2f5c40ff60ed5a6f68031547344450103c69450
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
---
 imports/agl-demo-controls/Symbols.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.16.6