From 489e5db1b2db47c62a65698c88700d93802aff7e Mon Sep 17 00:00:00 2001 From: Johannes Bichler Date: Tue, 23 Apr 2024 09:20:14 +0200 Subject: [PATCH] SmybolLayout: add alternative keys for spanish language Added upside-down Exclamation and Question Mark alternative keys (Spanish usage) --- src/qml/SymbolLayout.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qml/SymbolLayout.qml b/src/qml/SymbolLayout.qml index 6ee9a74..f3576b0 100644 --- a/src/qml/SymbolLayout.qml +++ b/src/qml/SymbolLayout.qml @@ -171,6 +171,7 @@ Item { Key { btnKey: Qt.Key_Exclam btnText: "!" + alternativeKeys: "¡" inputPanelRef: inputPanel } @@ -219,6 +220,7 @@ Item { Key { btnKey: Qt.Key_Question btnText: "?" + alternativeKeys: "¿" inputPanelRef: inputPanel }