fix: 修复 mouseup 失效 (#1114)

This commit is contained in:
YiQianYao 2022-05-17 22:58:21 +08:00 committed by GitHub
parent a6ab68a12e
commit db1940be1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -214,7 +214,8 @@ export default class PickingService implements IPickingService {
if (
t - this.lastPickTime > 10 ||
target.type === 'contextmenu' ||
target.type === 'click'
target.type === 'click' ||
target.type === 'mouseup'
) {
await this.pickingLayers(target);
}