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/nodes/trails | |
| parent | d9cb66b5368a1d7d90b1874f928cf69ab62d976d (diff) | |
added proper scaling of multi-selections and groups. fixed pinViewport to work again.
Diffstat (limited to 'src/client/views/nodes/trails')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index f8c47aafe..0b780f589 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -567,6 +567,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { bestTarget._panY = viewport.panY; const dv = DocumentManager.Instance.getDocumentView(bestTarget); if (dv) { + changed = true; const computedScale = NumCast(activeItem.presZoom, 1) * Math.min(dv.props.PanelWidth() / viewport.width, dv.props.PanelHeight() / viewport.height); activeItem.presMovement === PresMovement.Zoom && (bestTarget._viewScale = computedScale); dv.ComponentView?.brushView?.(viewport); |
