diff options
| author | bobzel <zzzman@gmail.com> | 2022-07-05 12:33:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-07-05 12:33:28 -0400 |
| commit | 0906eab4135db844dc45a20d33f84e7439461c9b (patch) | |
| tree | 608deaa7b1bacca054501599ad76b3bc7b997533 /src/client/views/DocumentDecorations.tsx | |
| parent | 9f89d4d2bd166a189da0c6cce66ac4ebb5682ab5 (diff) | |
fixed sidebar annos to be editable (with i-beam cursor) when selected and to be active when parent document is active. fixed previewing a sidebar annotation to not open up sidebar
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 17e135689..9dc02e3f4 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -341,6 +341,7 @@ export class DocumentDecorations extends React.Component<{ PanelWidth: number; P onPointerMove = (e: PointerEvent, down: number[], move: number[]): boolean => { const first = SelectionManager.Views()[0]; + if (!first) return false; let thisPt = { x: e.clientX - this._offX, y: e.clientY - this._offY }; var fixedAspect = Doc.NativeAspect(first.layoutDoc); InkStrokeProperties.Instance._lock && |
