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/LightboxView.tsx | |
parent | 435537b2dc511d2908759240cfc3c6826e8cd291 (diff) |
cleanup of rootSelected to default to false. remove unused mobile classes.
Diffstat (limited to 'src/client/views/LightboxView.tsx')
-rw-r--r-- | src/client/views/LightboxView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/LightboxView.tsx b/src/client/views/LightboxView.tsx index c91f8455a..98d30b625 100644 --- a/src/client/views/LightboxView.tsx +++ b/src/client/views/LightboxView.tsx @@ -7,7 +7,7 @@ import * as React from 'react'; import { Doc, DocListCast, FieldResult, Opt } from '../../fields/Doc'; import { InkTool } from '../../fields/InkField'; import { Cast, NumCast } from '../../fields/Types'; -import { emptyFunction, returnEmptyDoclist, returnEmptyFilter, returnTrue, Utils } from '../../Utils'; +import { emptyFunction, returnEmptyDoclist, returnEmptyFilter, returnFalse, returnTrue, Utils } from '../../Utils'; import { DocUtils } from '../documents/Documents'; import { DocumentManager } from '../util/DocumentManager'; import { LinkManager } from '../util/LinkManager'; @@ -256,7 +256,7 @@ export class LightboxView extends React.Component<LightboxViewProps> { styleProvider={DefaultStyleProvider} ScreenToLocalTransform={this.lightboxScreenToLocal} renderDepth={0} - rootSelected={returnTrue} + rootSelected={returnFalse} docViewPath={returnEmptyDoclist} childFilters={returnEmptyFilter} childFiltersByRanges={returnEmptyFilter} |