diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-27 09:10:36 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-27 09:10:36 -0400 |
| commit | 7342eb81f241ce0b2a5a33ddfb0c865eab6a492f (patch) | |
| tree | 933f5c55dd043f5869771a87df1082614c1e6d5f /src/client/views/collections/collectionFreeForm | |
| parent | d9cb66b5368a1d7d90b1874f928cf69ab62d976d (diff) | |
added proper scaling of multi-selections and groups. fixed pinViewport to work again.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeView.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx index eaeb5f933..e5f47823c 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx @@ -425,9 +425,8 @@ export class MarqueeView extends React.Component<SubCollectionViewProps & Marque */ @undoBatch @action - pinWithView = async () => { - const doc = this.props.Document; - TabDocView.PinDoc(doc, { pinViewport: this.Bounds }); + pinWithView = () => { + TabDocView.PinDoc(this.props.Document, { pinViewport: this.Bounds }); MarqueeOptionsMenu.Instance.fadeOut(true); this.hideMarquee(); }; |
