Fix is click in selection

This commit is contained in:
Bruno Ribeito
2018-02-01 21:37:06 +00:00
parent 983af8fac2
commit 5550bfd90b
+2 -2
View File
@@ -258,8 +258,8 @@ export class SelectionManager extends EventEmitter implements ISelectionManager
}
return (start[1] < coords[1] && end[1] > coords[1]) ||
(start[1] === coords[1] && coords[0] > start[0]) ||
(end[1] === coords[1] && coords[0] < end[0]);
(start[1] === end[1] && start[1] === coords[1] && coords[0] > start[0] && coords[0] < end[0]) ||
(start[1] < end[1] && end[1] === coords[1] && coords[0] < end[0]);
}
/**