mirror of
https://github.com/zadam/trilium.git
synced 2025-01-15 19:51:57 +08:00
fix in page search in browser (didn't appear after ctrl+f)
This commit is contained in:
parent
a27525af9e
commit
896776516b
1 changed files with 3 additions and 5 deletions
|
@ -138,16 +138,14 @@ function registerEntrypoints() {
|
|||
});
|
||||
}
|
||||
|
||||
function openInPageSearch() {
|
||||
if (utils.isElectron()) {
|
||||
if (utils.isElectron()) {
|
||||
utils.bindShortcut('ctrl+f', () => {
|
||||
findInPage.openFindWindow();
|
||||
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
utils.bindShortcut('ctrl+f', openInPageSearch);
|
||||
|
||||
// FIXME: do we really need these at this point?
|
||||
utils.bindShortcut("ctrl+shift+up", () => {
|
||||
const node = treeService.getActiveNode();
|
||||
|
|
Loading…
Reference in a new issue