make selecting multiple objects on shift

This commit is contained in:
Val Erastov 2015-08-11 20:20:32 -07:00
parent 87ebd84009
commit c0f013af02

View file

@ -750,7 +750,7 @@ TCAD.TWO.PanTool.prototype.mousedown = function(e) {
if (e.button == 0) {
var picked = this.viewer.pick(e);
if (picked.length > 0) {
if (e.ctrlKey) {
if (e.shiftKey) {
this.viewer.select([picked[0]], false);
this.deselectOnUp = false;
} else {