Skip to content

Commit

Permalink
Tracing tool: add missing '=' for zooming in
Browse files Browse the repository at this point in the history
Before we switched from key codes to key values, the equals sign also
acted as regular zoom-in button. This is now working again.
  • Loading branch information
tomka committed May 17, 2017
1 parent ec2961c commit b25f0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/applications/catmaid/static/js/tools/navigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
new CATMAID.Action({
helpText: "Zoom in (smaller increments with <kbd>Shift</kbd> held)",
keyShortcuts: {
'+': [ '+', 'Shift + +' ]
'+': [ '+', '=', 'Shift + +' ]
},
run: function (e) {
self.slider_s.move(1, !e.shiftKey);
Expand Down

0 comments on commit b25f0bf

Please sign in to comment.