summaryrefslogtreecommitdiff
path: root/src/client/keyshortcuts.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-12 14:13:57 +0200
committerAlon Levy <alon@pobox.com>2015-04-12 14:13:59 +0200
commit7c5c6a917c8bce9d538c51becaf9a06fb1741bf5 (patch)
treef60cb36ddca2e612e44756defcaafda9c39a8a50 /src/client/keyshortcuts.js
parent8d16cbce9ec8aa139404f1823c4b68e0b4c1c02a (diff)
client/selection: rename: selected & related
selected nodes - nodes the user selected directly, via search or click. related - nodes that we choose to show the user as a result of the selection made.
Diffstat (limited to 'src/client/keyshortcuts.js')
-rw-r--r--src/client/keyshortcuts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/keyshortcuts.js b/src/client/keyshortcuts.js
index 2f5b66a8..13477d7a 100644
--- a/src/client/keyshortcuts.js
+++ b/src/client/keyshortcuts.js
@@ -23,7 +23,7 @@ function install() {
$('#textanalyser').focus();
}
if (e.keyIdentifier === 'F6') {
- rz_core.main_graph_view.nodes__user_visible(selection.selected_nodes(), true);
+ rz_core.main_graph_view.nodes__user_visible(selection.related(), true);
handled = true;
}
if (e.altKey && e.ctrlKey && 'o' === key) {