Add the euro and pound symbols

Fn+$ and Fn+# respectively.
This commit is contained in:
Jules Aguillon 2021-12-05 20:16:01 +01:00
parent d8d3cf85e5
commit 5e5c7ef86a

View File

@ -179,6 +179,8 @@ class KeyModifier
case "-": name = ""; break;
case "_": name = ""; break;
case "esc": name = "insert"; break;
case "$": name = ""; break;
case "#": name = "£"; break;
default: return k;
}
return KeyValue.getKeyByName(name);