Skip to content

Commit

Permalink
Change from metaKey to ctrlKey
Browse files Browse the repository at this point in the history
Selectables: In a previous merge/repo change, the change of this key
qualifier from metaKey (Mac only) to ctrlKey was lost. This is now
reinstated.
  • Loading branch information
Carl Svensson committed Jun 20, 2016
1 parent 49f1a47 commit 16b1db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiki/js/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ define([
this.reset(slice);
e.preventDefault();
}
else if(e.type == 'mousedown' && e.metaKey) {
else if(e.type == 'mousedown' && e.ctrlKey) {
this.toggle(model);
}
else {
Expand Down

0 comments on commit 16b1db3

Please sign in to comment.