diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-05-01 12:47:51 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-05-01 12:47:51 -0400 |
commit | 37324d134c8d788a73b8b1d35afa7ea6b0e88d37 (patch) | |
tree | 789553d5deb69b2cbd40e1dd2d15320b285d3cb4 /src/client/views/nodes/DocumentView.tsx | |
parent | ff7c7d40b1fcdf74b539c7d97f36707ff1521d2e (diff) |
cleaned up buxton template. fixed adding docs to collections.
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 f555d6eef..f1efa48f4 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -666,7 +666,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu @undoBatch @action toggleBackground = (temporary: boolean): void => { - this.Document.overflow = temporary ? "visible" : "hidden"; + this.Document._overflow = temporary ? "visible" : "hidden"; this.Document.isBackground = !temporary ? !this.Document.isBackground : (this.Document.isBackground ? undefined : true); this.Document.isBackground && this.props.bringToFront(this.Document, true); } |