Skip to content

Commit

Permalink
fix: ascii_keyboard tag was malfunctional
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiredPlanck committed Jun 22, 2024
1 parent 2df3ae5 commit 1f1c0a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class Keyboard() {
mLabelTransform = obtainString(keyboardConfig, "label_transform", "none")
asciiMode = obtainInt(keyboardConfig, "ascii_mode", 1) == 1
currentAsciiMode = asciiMode
if (asciiMode) asciiKeyboard = obtainString(keyboardConfig, "ascii_keyboard", "")
if (!asciiMode) asciiKeyboard = obtainString(keyboardConfig, "ascii_keyboard", "")
resetAsciiMode = obtainBoolean(keyboardConfig, "reset_ascii_mode", true)
landscapeKeyboard = obtainString(keyboardConfig, "landscape_keyboard", "")
mLandscapePercent =
Expand Down

0 comments on commit 1f1c0a6

Please sign in to comment.