summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-12 00:34:42 +0200
committerAlon Levy <alon@pobox.com>2015-04-12 00:34:42 +0200
commitac239c21581bd0a4c88c17f08a2dc33c15efe247 (patch)
treed8862436cff7396c59b734ff41358a2038056315 /src/client
parent3255529f9db0208f8e56689e31aa626251ba1e40 (diff)
client: fix ctrl-A breakage since selection signatures changed
Diffstat (limited to 'src/client')
-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 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') {