mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
make selecting multiple objects on shift
This commit is contained in:
parent
87ebd84009
commit
c0f013af02
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue