diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-12 00:34:42 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-12 00:34:42 +0200 |
| commit | ac239c21581bd0a4c88c17f08a2dc33c15efe247 (patch) | |
| tree | d8862436cff7396c59b734ff41358a2038056315 /src/client | |
| parent | 3255529f9db0208f8e56689e31aa626251ba1e40 (diff) | |
client: fix ctrl-A breakage since selection signatures changed
Diffstat (limited to 'src/client')
| -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') { |
