Skip to content

Commit

Permalink
Fix call to document.keySearch with incorrect number of parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuperino committed Sep 22, 2024
1 parent d423553 commit e09a624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prompter/Prompter.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ Flickable {
// }

// Perform keyCode marker search.
let namedAnchorPosition = document.keySearch(event.key, document.cursorPosition, false, true);
let namedAnchorPosition = document.keySearch(event.key);
if (namedAnchorPosition!==-1)
prompter.goTo(namedAnchorPosition);
//// Undo and redo key bindings
Expand Down

0 comments on commit e09a624

Please sign in to comment.