diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-07-24 00:35:29 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-07-24 00:35:29 -0400 |
commit | 5bc848bde4f37ec3dc812b22d81ded16f2a86f93 (patch) | |
tree | 81602e12373661413c5ac3745a1c8ff4300e5a15 /src/client/views/nodes/DocumentView.tsx | |
parent | 189cf09a7c81e8b4b2f5313cf093097cc9eba03e (diff) |
fixed reordering tree view items. restored double-click to view detail view.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 09a1b49fe..8d7b3d835 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -295,6 +295,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu if (this._doubleTap && this.props.renderDepth) { let fullScreenAlias = Doc.MakeAlias(this.props.Document); fullScreenAlias.templates = new List<string>(); + Doc.UseDetailLayout(fullScreenAlias); this.props.addDocTab(fullScreenAlias, this.dataDoc, "inTab"); SelectionManager.DeselectAll(); this.props.Document.libraryBrush = undefined; |