diff options
author | bobzel <zzzman@gmail.com> | 2022-08-29 13:31:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-08-29 13:31:22 -0400 |
commit | fb873aed085f8e11231a231aac94d6fb3bd27683 (patch) | |
tree | 6448b02973676b95f99eba5d6f1a8608293670f8 /src/client/views/nodes/DocumentView.tsx | |
parent | 5c25ba79fb24309cb9861d440778cbb902acd123 (diff) |
fixed being able to draw on web/pdfs. adjusted default margins of stacking views.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 74143a731..01fadb48d 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1346,6 +1346,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps style={{ background: isButton || thumb ? undefined : this.backgroundColor, opacity: this.opacity, + cursor: Doc.ActiveTool === InkTool.None ? 'grab' : 'crosshair', color: StrCast(this.layoutDoc.color, 'inherit'), fontFamily: StrCast(this.Document._fontFamily, 'inherit'), fontSize: Cast(this.Document._fontSize, 'string', null), |