Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
RickyDane committed Aug 13, 2024
1 parent b5b8fa3 commit f589503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/main_logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ document.onkeydown = async (e) => {
e.stopPropagation();
}
// check if backspace is pressed
if (e.keyCode == 8 && IsPopUpOpen == false) {
if (e.keyCode == 8 && IsPopUpOpen === false && IsInputFocused === false) {
goBack();
e.preventDefault();
e.stopPropagation();
Expand Down

0 comments on commit f589503

Please sign in to comment.