summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/keyshortcuts.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/keyshortcuts.js b/src/client/keyshortcuts.js
index 1c5ed64a..2f5b66a8 100644
--- a/src/client/keyshortcuts.js
+++ b/src/client/keyshortcuts.js
@@ -22,8 +22,13 @@ function install() {
if (e.altKey && e.ctrlKey && 'i' === key) {
$('#textanalyser').focus();
}
+ if (e.keyIdentifier === 'F6') {
+ rz_core.main_graph_view.nodes__user_visible(selection.selected_nodes(), true);
+ handled = true;
+ }
if (e.altKey && e.ctrlKey && 'o' === key) {
search.focus();
+ handled = true;
}
if (e.ctrlKey && 'a' === key && e.target === document.body) {
selection.select_nodes(rz_core.main_graph.nodes());