diff options
author | bobzel <zzzman@gmail.com> | 2020-11-19 13:09:17 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-11-19 13:09:17 -0500 |
commit | 0a0f408b5319d7c8dea747907b4c6f5e8f012dec (patch) | |
tree | 4b368a2373661df7dc9e69b2bceba68a23d4e133 /src/client/views/nodes/DocumentView.tsx | |
parent | 67435353b39071fbe3295cc80e35ee3df952f082 (diff) |
fixed singleLine text to not show scroll bars. made Ink honor _isBackground.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 4485c744d..f6262310f 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1097,7 +1097,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu renderLock() { return (this.Document._isBackground !== undefined || this.isSelected(false)) && - ((this.Document.type === DocumentType.COL && this.Document._viewType !== CollectionViewType.Pile) || this.Document.type === DocumentType.IMG) && + ((this.Document.type === DocumentType.COL && this.Document._viewType !== CollectionViewType.Pile) || this.Document.type === DocumentType.IMG || this.Document.type === DocumentType.INK) && this.props.renderDepth > 0 && !this.props.treeViewDoc ? <div className="documentView-lock" onClick={this.toggleBackground}> <FontAwesomeIcon icon={this.Document._isBackground ? "unlock" : "lock"} style={{ color: this.Document._isBackground ? "red" : undefined }} size="lg" /> |