not uppercasing characters that need to be highlighted on the keymap

fixes #2828
This commit is contained in:
Miodec 2022-04-11 15:46:05 +02:00
parent 0ec67e170a
commit 529838061b
2 changed files with 0 additions and 5 deletions

View file

@ -54,7 +54,6 @@ function updateUI(): void {
.getCurrent()
.charAt(TestInput.input.current.length)
.toString()
.toUpperCase()
);
}
}
@ -128,7 +127,6 @@ function handleSpace(): void {
.getCurrent()
.charAt(TestInput.input.current.length)
.toString()
.toUpperCase()
);
Settings.groups["layout"]?.updateInput();
}

View file

@ -502,7 +502,6 @@ export function restart(
TestInput.input.current.length + 1
)
.toString()
.toUpperCase()
);
}
Funbox.toggleScript(TestWords.words.getCurrent());
@ -568,7 +567,6 @@ export function restart(
TestInput.input.current.length + 1
)
.toString()
.toUpperCase()
);
}
@ -1006,7 +1004,6 @@ export async function init(): Promise<void> {
TestInput.input.current.length + 1
)
.toString()
.toUpperCase()
);
}
Funbox.toggleScript(TestWords.words.getCurrent());