diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-03-12 23:14:33 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-03-12 23:14:33 -0400 |
commit | 8f847d110b8c0d0a8213b92dffdb1394ac0d394b (patch) | |
tree | 57916b28c9c17ea906b6828ca67a59a5f1b0595f /src/new_fields/documentSchemas.ts | |
parent | 1df26f00fedd7b9c5203c43729f36279eff8680d (diff) |
fixed reified buttons to not select
Diffstat (limited to 'src/new_fields/documentSchemas.ts')
-rw-r--r-- | src/new_fields/documentSchemas.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/new_fields/documentSchemas.ts b/src/new_fields/documentSchemas.ts index e113a7d64..e06452a4e 100644 --- a/src/new_fields/documentSchemas.ts +++ b/src/new_fields/documentSchemas.ts @@ -42,6 +42,7 @@ export const documentSchema = createSchema({ removeDropProperties: listSpec("string"), // properties that should be removed from the alias/copy/etc of this document when it is dropped isTemplateForField: "string",// when specifies a field key, then the containing document is a template that renders the specified field isBackground: "boolean", // whether document is a background element and ignores input events (can only selet with marquee) + dontSelect: "boolean", // whether document should be selected when clicked (usually set to false for buttons) treeViewOpen: "boolean", // flag denoting whether the documents sub-tree (contents) is visible or hidden treeViewExpandedView: "string", // name of field whose contents are being displayed as the document's subtree treeViewPreventOpen: "boolean", // ignores the treeViewOpen flag (for allowing a view to not be slaved to other views of the document) |