diff options
author | bobzel <zzzman@gmail.com> | 2021-09-17 00:28:44 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-09-17 00:28:44 -0400 |
commit | 1de71a39f1f6ebc2c909c92694db340cc9b256a0 (patch) | |
tree | 5209b562ecefb28595c254c8a30e33f9f3f10001 | |
parent | e5e046fbf76dad34ef59754b9ed4c2469e5b849f (diff) |
fixed keeping anchor menu visible when selecting a new marker color from menu
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index 96a3ce83b..acccccfb4 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -224,7 +224,7 @@ export class WebBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps AnchorMenu.Instance.jumpTo(e.clientX * scale + mainContBounds.translateX, e.clientY * scale + mainContBounds.translateY - NumCast(this.layoutDoc._scrollTop) * scale); } - } else AnchorMenu.Instance.fadeOut(true); + } } @action iframeDown = (e: PointerEvent) => { |