diff options
author | bobzel <zzzman@gmail.com> | 2021-12-07 11:23:36 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-12-07 11:23:36 -0500 |
commit | 639eb465369f89dc541dfbeeaed34dfe133a8810 (patch) | |
tree | 017cb00e7d5d9565de0a8794a912ef69bbb392e1 /src/client/util/SelectionManager.ts | |
parent | 4bad9d544879f5d59becb2c0e22c9ff5800f2890 (diff) |
restored keeping properties pane open when selection changes. added Doc paraemter to fitWidth() prop function. split MapBoxInfoWindow out of MapBox and added an Add Note button.
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index 6674f684d..b71086561 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -44,11 +44,8 @@ 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)); + Array.from(manager.SelectedViews.keys()).forEach(dv => dv.props.whenChildContentsActiveChanged(false)); manager.SelectedViews.clear(); } } |