From 16b1db30d432fbc08be32233b95520dfe604ae2c Mon Sep 17 00:00:00 2001 From: Carl Svensson Date: Mon, 20 Jun 2016 16:03:18 +0200 Subject: [PATCH] Change from metaKey to ctrlKey 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. --- tiki/js/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiki/js/tools.js b/tiki/js/tools.js index 94a24e6..e71a166 100644 --- a/tiki/js/tools.js +++ b/tiki/js/tools.js @@ -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 {