diff options
| author | bobzel <zzzman@gmail.com> | 2023-02-04 21:04:09 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-02-04 21:04:09 -0500 |
| commit | a8b19694ec902d4094914ba6ddd15e700fab117e (patch) | |
| tree | 4dcf51726edd0ab72274cbb8c60ae92c3cd16635 /src/client/views/InkingStroke.tsx | |
| parent | c1e713b611f12b2070854e19e4838d6a44126c0b (diff) | |
image background color determines opacity of image (independently of annotations over image). enabled scrolling of images when in fitWidth mode. added disabling of text labels in ink shapes.
Diffstat (limited to 'src/client/views/InkingStroke.tsx')
| -rw-r--r-- | src/client/views/InkingStroke.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx index 319a9419e..7a5151634 100644 --- a/src/client/views/InkingStroke.tsx +++ b/src/client/views/InkingStroke.tsx @@ -442,7 +442,7 @@ export class InkingStroke extends ViewBoxBaseComponent<FieldViewProps>() { {clickableLine(this.onPointerDown)} {inkLine} </svg> - {!closed || (!RTFCast(this.rootDoc.text)?.Text && !this.props.isSelected()) ? null : ( + {!closed || (!RTFCast(this.rootDoc.text)?.Text && (!this.props.isSelected() || Doc.UserDoc().activeInkHideTextLabels)) ? null : ( <div className="inkStroke-text" style={{ |
