aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocumentDecorations.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-05-12 12:10:21 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-05-12 12:10:21 -0400
commit3911cf85eaf57c133166a6bd08732193ac74d885 (patch)
tree74b1761efcac69d96ada11463214ba048f6bec25 /src/client/views/DocumentDecorations.tsx
parent5c4865247b4aca883d39950a15c172ae0431a74e (diff)
changed isBackground setting to reset nativeW/H to W/H. fixed presBox reordering. fixed resizing of fixedAspect suff from sides.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
-rw-r--r--src/client/views/DocumentDecorations.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx
index 3cd7f8da3..313d8be23 100644
--- a/src/client/views/DocumentDecorations.tsx
+++ b/src/client/views/DocumentDecorations.tsx
@@ -264,7 +264,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }>
const first = SelectionManager.SelectedDocuments()[0];
let thisPt = { thisX: e.clientX - this._offX, thisY: e.clientY - this._offY };
const fixedAspect = first.layoutDoc._nativeWidth ? NumCast(first.layoutDoc._nativeWidth) / NumCast(first.layoutDoc._nativeHeight) : 0;
- if (fixedAspect) { // need to generalize for bl and tr drag handles
+ if (fixedAspect && (this._resizeHdlId === "documentDecorations-bottomRightResizer" || this._resizeHdlId === "documentDecorations-topLeftResizer")) { // need to generalize for bl and tr drag handles
const project = (p: number[], a: number[], b: number[]) => {
var atob = [b[0] - a[0], b[1] - a[1]];
var atop = [p[0] - a[0], p[1] - a[1]];