mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 18:28:19 +08:00
fix: fix cr issue
This commit is contained in:
parent
ac2164fa45
commit
08db39825c
@ -2,7 +2,7 @@ import { isFunction } from '@antv/util';
|
||||
import { CommonEvent } from '../constants';
|
||||
import { ELEMENT_TYPES } from '../constants/element';
|
||||
import type { RuntimeContext } from '../runtime/types';
|
||||
import type { Element, ElementType, ID, IPointerEvent, State } from '../types';
|
||||
import type { Element, ElementType, ID, IDragEvent, IPointerEvent, State } from '../types';
|
||||
import { idsOf } from '../utils/id';
|
||||
import { getElementNthDegreeIds } from '../utils/relation';
|
||||
import type { BaseBehaviorOptions } from './base-behavior';
|
||||
@ -91,8 +91,8 @@ export class HoverElement extends BaseBehavior<HoverElementOptions> {
|
||||
this.bindEvents();
|
||||
}
|
||||
|
||||
private toggleFrozen = () => {
|
||||
this.isFrozen = !this.isFrozen;
|
||||
private toggleFrozen = (e: IDragEvent) => {
|
||||
this.isFrozen = e.type === 'dragstart';
|
||||
};
|
||||
|
||||
private bindEvents() {
|
||||
|
Loading…
Reference in New Issue
Block a user