diff options
author | bob <bcz@cs.brown.edu> | 2019-05-09 14:11:35 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-05-09 14:11:35 -0400 |
commit | 244d4d127e7e1a0faadbc5a8baed7922ef03522c (patch) | |
tree | 09dfaa6d524e39fcfffba1a1bd782f4b44905cab /src/client/util/SelectionManager.ts | |
parent | 9015421a227ab58f309906eabf884654d3a31a17 (diff) |
cleaned up textlinking a little.
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index fe5acf4b4..a3a8172c7 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -1,7 +1,7 @@ import { observable, action } from "mobx"; import { Doc } from "../../new_fields/Doc"; -import { MainOverlayTextBox } from "../views/MainOverlayTextBox"; import { DocumentView } from "../views/nodes/DocumentView"; +import { FormattedTextBox } from "../views/nodes/FormattedTextBox"; export namespace SelectionManager { class Manager { @@ -25,7 +25,7 @@ export namespace SelectionManager { DeselectAll(): void { manager.SelectedDocuments.map(dv => dv.props.whenActiveChanged(false)); manager.SelectedDocuments = []; - MainOverlayTextBox.Instance.SetTextDoc(); + FormattedTextBox.InputBoxOverlay = undefined; } @action ReselectAll() { |