diff options
author | bob <bcz@cs.brown.edu> | 2019-03-26 16:44:53 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-26 16:44:53 -0400 |
commit | 92aaac7cd78b9287d7f6ee85e73b3cad1c42d80c (patch) | |
tree | acd1b0dfe042fdfdfeba8628cf9617fd01129d42 /src/client/views/nodes/DocumentContentsView.tsx | |
parent | 9f585c4f0a8287951f142f99dcc54861cb348728 (diff) |
fixed histos in docking pane and not selecting bars when dragging.
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index 40990b76a..f48be2047 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -35,6 +35,7 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { @computed get layoutKeys(): Key[] { return this.props.Document.GetData(KeyStore.LayoutKeys, ListField, new Array<Key>()); } @computed get layoutFields(): Key[] { return this.props.Document.GetData(KeyStore.LayoutFields, ListField, new Array<Key>()); } + CreateBindings(): JsxBindings { let bindings: JsxBindings = { ...this.props, }; for (const key of this.layoutKeys) { |