diff options
Diffstat (limited to 'src/components/TileTree.vue')
| -rw-r--r-- | src/components/TileTree.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/TileTree.vue b/src/components/TileTree.vue index 723befc..dfe1213 100644 --- a/src/components/TileTree.vue +++ b/src/components/TileTree.vue @@ -272,6 +272,10 @@ export default defineComponent({ onKeyUp(evt: KeyboardEvent){ if (evt.key == 'Escape'){ this.closeModalsAndSettings(); + } else if (evt.key == 'F' && evt.ctrlKey){ + if (!this.searchOpen){ + this.onSearchIconClick(); + } } }, initLayoutMap(node: LayoutNode): Map<string,LayoutNode> { |
