From e369336c413a337e02afc027cc1aecdd76a496c5 Mon Sep 17 00:00:00 2001 From: bobzel Date: Wed, 20 Jan 2021 23:36:16 -0500 Subject: fixed hiding AnchorMenu in text boxes. encapsulated fadeOut of AnchorMenu within class for simplicity. --- src/client/views/pdf/Annotation.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/views/pdf/Annotation.tsx') diff --git a/src/client/views/pdf/Annotation.tsx b/src/client/views/pdf/Annotation.tsx index 85dd65901..cd32c2c3a 100644 --- a/src/client/views/pdf/Annotation.tsx +++ b/src/client/views/pdf/Annotation.tsx @@ -67,8 +67,8 @@ class RegionAnnotation extends React.Component { } componentWillUnmount() { - this._brushDisposer && this._brushDisposer(); - this._reactionDisposer && this._reactionDisposer(); + this._brushDisposer?.(); + this._reactionDisposer?.(); } @undoBatch @@ -83,8 +83,8 @@ class RegionAnnotation extends React.Component { DocListCast(group.annotations).forEach(anno => anno.delete = true); } - AnchorMenu.Instance.fadeOut(true); + this.props.select(false); } @undoBatch -- cgit v1.2.3-70-g09d2