fix: added a missing key on Bépo layout

This commit is contained in:
minjaesong
2024-09-06 15:36:17 +09:00
parent 56b98f3086
commit 849271328d
2 changed files with 12 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{"n":"FR Bépo","capslock":"shift","t":[[""],[undefined],
{"n":"FR Bépo","capslock":"shift","t":[[""],[undefined], // NOTE: ISO key that's between LSHIFT and Z (called NUBS on QMK) is not recognised by GDX; NUHS is same as BACKSLASH
[undefined],
["<HOME>"],
[undefined],
@@ -51,7 +51,7 @@
["é","É","\u0301","\u0301"],// W
["y","Y","{",""],// X
["\u0302","!","¡","¡"],// Y
["w","W","\\",""],// Z
["à","À","\\",""],// Z
["g","G","µ","†"],// <
["h","H","\u0323","‡"],// >
["<ALT_L>"],
@@ -70,7 +70,7 @@
["%","`","‰","″"],// =
["z","Z","\u0336","\u0336"],// [
["w","W"],// ]
["ê","Ê","/","^"],// \
["ç","Ç","/","^"],// \ but compromises has been made; use "<circumflex_accent (key between È and V)> + E" to make Ê
["n","N","\u0303","\u0303"],// ;
["m",'M',"\u0304","\u0304"],// '
["f","F","\u0328","\u0328"],// ?

View File

@@ -204,6 +204,15 @@ class UIKeyboardControlPanel(remoCon: UIRemoCon?) : UICanvas() {
presetSelector.update(delta)
controlPalette.update(delta)
// TEST CODE
/*val pushedKeys = ArrayList<Int>()
for (k in 0..255) {
if (Gdx.input.isKeyPressed(k))
pushedKeys.add(k)
}
println("Pushed Keys: $pushedKeys")
*/
}
override fun renderImpl(frameDelta: Float, batch: SpriteBatch, camera: OrthographicCamera) {