diff options
| author | bobzel <zzzman@gmail.com> | 2023-11-25 22:57:16 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-11-25 22:57:16 -0500 |
| commit | 33cfc91ed9a6a2fe8b4a5b55ebd9accc24eaa1ae (patch) | |
| tree | 32b4b6bb6005741408bf470fafd56c935112323a /src/client/views/collections/TreeView.tsx | |
| parent | 435537b2dc511d2908759240cfc3c6826e8cd291 (diff) | |
cleanup of rootSelected to default to false. remove unused mobile classes.
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index 004857ed1..6e3f8e807 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -976,7 +976,7 @@ export class TreeView extends React.Component<TreeViewProps> { treeViewDoc={this.props.treeView.props.Document} addDocument={undefined} addDocTab={this.props.addDocTab} - rootSelected={returnTrue} + rootSelected={returnFalse} pinToPres={emptyFunction} onClick={this.onChildClick} onDoubleClick={this.onChildDoubleClick} @@ -1082,7 +1082,7 @@ export class TreeView extends React.Component<TreeViewProps> { ScreenToLocalTransform={this.docTransform} renderDepth={this.props.renderDepth + 1} treeViewDoc={this.props.treeView?.props.Document} - rootSelected={returnTrue} + rootSelected={returnFalse} docViewPath={this.props.treeView.props.docViewPath} childFilters={returnEmptyFilter} childFiltersByRanges={returnEmptyFilter} |
