diff options
| author | bobzel <zzzman@gmail.com> | 2021-08-19 14:03:18 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-08-19 14:03:18 -0400 |
| commit | 7cc9c998a904c8741dd57663c83f5ae64621ad44 (patch) | |
| tree | a7d1564747d7339f9a8fd761014a3632eb78adfb /src/client/views/collections | |
| parent | d35d6cb036a4bd78f3df967b3564a0517d1b9843 (diff) | |
fixed typing ? to search bing. fixed scrolling to target for Web/PDF when doc was not previously displayed.
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx index 19da7ea00..d0243850f 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx @@ -92,7 +92,7 @@ export class MarqueeView extends React.Component<SubCollectionViewProps & Marque cm.setDefaultItem("?", (str: string) => this.props.addDocTab( Docs.Create.WebDocument(`https://bing.com/search?q=${str}`, { _width: 400, x, y, _height: 512, _nativeWidth: 850, title: "bing", useCors: true }), "add:right")); - cm.displayMenu(this._downX, this._downY); + cm.displayMenu(this._downX, this._downY, undefined, true); e.stopPropagation(); } else if (e.key === "u" && this.props.ungroup) { |
