shift click to select multiple objects
This commit is contained in:
parent
7f34e0e542
commit
f7e26a074c
|
|
@ -2191,7 +2191,11 @@ function stage() {
|
|||
// dragging = true
|
||||
}
|
||||
child.saveState()
|
||||
context.selection = [child]
|
||||
if (e.shiftKey) {
|
||||
context.selection.push(child)
|
||||
} else {
|
||||
context.selection = [child]
|
||||
}
|
||||
context.dragging = true
|
||||
selected = true
|
||||
context.activeObject.currentFrame.saveState()
|
||||
|
|
|
|||
Loading…
Reference in New Issue