aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/TileTree.vue4
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> {