diff options
author | bobzel <zzzman@gmail.com> | 2021-12-02 15:40:30 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-12-02 15:40:30 -0500 |
commit | f92b490d3d54f5847f5f434a4105e88717531527 (patch) | |
tree | 7b747c6a068347318085a95cf4eb87f9f3f2ecbc /src/client/util/SelectionManager.ts | |
parent | 220cedfb9d013127d89756bcc85ac886a0d723da (diff) | |
parent | 1b6e83ce9b56b773165387ac5f306e6807dc2900 (diff) |
Merge branch 'master' of https://github.com/brown-dash/Dash-Web
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index 2cba2c1f2..6674f684d 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -4,6 +4,7 @@ import { Doc, Opt } from "../../fields/Doc"; import { DocumentType } from "../documents/DocumentTypes"; import { CollectionViewType } from "../views/collections/CollectionView"; import { DocumentView } from "../views/nodes/DocumentView"; +import { CurrentUserUtils } from "./CurrentUserUtils"; export namespace SelectionManager { @@ -43,6 +44,9 @@ export namespace SelectionManager { } @action DeselectAll(): void { + if (CurrentUserUtils.propertiesWidth > 0) { + CurrentUserUtils.propertiesWidth = 0; + } manager.SelectedSchemaDocument = undefined; Array.from(manager.SelectedViews.keys()).map(dv => dv.props.whenChildContentsActiveChanged(false)); manager.SelectedViews.clear(); |