diff options
author | bobzel <zzzman@gmail.com> | 2020-09-16 13:37:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-16 13:37:22 -0400 |
commit | 7c628f44e72a7d0b4c40c561dca4101712540e87 (patch) | |
tree | 1d378891fe87f98be6055a2208236a0f5a4df3ee /src/client/documents/Documents.ts | |
parent | 4fc10a64e35234da2dafd03c3f53f5e080e754d2 (diff) |
added a global option to determine whether documents are brought to front when dragged. fixed document override of this option to use the same variable _raiseWhenDragged.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 0911f3e04..04c7a0f59 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -133,7 +133,7 @@ export interface DocumentOptions { opacity?: number; defaultBackgroundColor?: string; _isBackground?: boolean; - "_isBackground-canClick"?: boolean; // a background document that you can still click on to edit its contents + _raiseWhenDragged?: boolean; // whether a document is brought to front when dragged. isLinkButton?: boolean; _columnWidth?: number; _fontSize?: string; |