diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/keyshortcuts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/keyshortcuts.js b/src/client/keyshortcuts.js index 1056b7b0..1c5ed64a 100644 --- a/src/client/keyshortcuts.js +++ b/src/client/keyshortcuts.js @@ -26,7 +26,7 @@ function install() { search.focus(); } if (e.ctrlKey && 'a' === key && e.target === document.body) { - selection.update(rz_core.main_graph.nodes(), false); + selection.select_nodes(rz_core.main_graph.nodes()); handled = true; } if (e.ctrlKey && 'z' === key && e.target.nodeName !== 'INPUT') { |
