diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-05-21 02:18:38 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-05-21 02:18:38 -0400 |
commit | 22e1207fc1f36fbf1e399c4e19eae3a56fadd397 (patch) | |
tree | 03cce5a3b773fa8e8f63fd2fd55a6913c2cb0ed4 /src/client/util/SelectionManager.ts | |
parent | 14972c1bfaf339a66db3464d9ea1f7d0453aa670 (diff) | |
parent | 45386f6950e5ae8390486900a430061bfe9e4846 (diff) |
merged with master
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index bd743c28e..05515e502 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -54,8 +54,6 @@ export namespace SelectionManager { manager.SelectDoc(docView, ctrlPressed); } - export function SetIsDragging(dragging: boolean) { runInAction(() => manager.IsDragging = dragging); } - export function GetIsDragging() { return manager.IsDragging; } // computed functions, such as used in IsSelected generate errors if they're called outside of a // reaction context. Specifying the context with 'outsideReaction' allows an efficiency feature // to avoid unnecessary mobx invalidations when running inside a reaction. |