fix: 🐛 stop propagation when enable following (#1398)
This commit is contained in:
@ -349,7 +349,10 @@ export class Selection extends View<Selection.EventArgs> {
|
||||
}
|
||||
|
||||
protected onSelectionBoxMouseDown(evt: JQuery.MouseDownEvent) {
|
||||
// evt.stopPropagation()
|
||||
if (!this.options.following) {
|
||||
evt.stopPropagation()
|
||||
}
|
||||
|
||||
const e = this.normalizeEvent(evt)
|
||||
|
||||
if (this.options.movable) {
|
||||
|
Reference in New Issue
Block a user