diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-17 03:28:19 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-17 03:28:19 -0400 |
| commit | 582c709a2b08e2f6c12793121d0c8b264ddc2ca2 (patch) | |
| tree | 95f79bc291cb7d68929ef311c237d0f593ad4192 /src/client/views/collections | |
| parent | a5a4cc47944766a29e8b6dc2364c35de52c1400d (diff) | |
close context menu when starting a right-click drag on a webbox. .fixed dismissing marquee menu from outer view when clicking on nested webbox. AltKey drags marquee, not CtrlKey.
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeOptionsMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeOptionsMenu.tsx b/src/client/views/collections/collectionFreeForm/MarqueeOptionsMenu.tsx index cedeb1112..ecff01e67 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeOptionsMenu.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeOptionsMenu.tsx @@ -16,7 +16,7 @@ export class MarqueeOptionsMenu extends AntimodeMenu<AntimodeMenuProps> { public showMarquee: () => void = unimplementedFunction; public hideMarquee: () => void = unimplementedFunction; public pinWithView: (e: KeyboardEvent | React.PointerEvent | undefined) => void = unimplementedFunction; - + public isShown = () => { return this._opacity > 0; } constructor(props: Readonly<{}>) { super(props); |
