mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-10 14:10:59 +08:00
not uppercasing characters that need to be highlighted on the keymap
fixes #2828
This commit is contained in:
parent
0ec67e170a
commit
529838061b
2 changed files with 0 additions and 5 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue