aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-05-04 10:31:38 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-05-04 10:31:38 -0400
commita41092feaf9e5777a538371ded3c8d88e58a3d90 (patch)
treea0f550cbda79e17b9181f3d3e9ee22c2fdd40073 /src/client/util/DragManager.ts
parent1027f0b2e40df0ca13dfa2db97f278e804dadb68 (diff)
open scripts on right. cleanup collection links slighlty
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index d91eb60ef..348aba588 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -74,7 +74,7 @@ export namespace DragManager {
public StartWindowDrag: Opt<((e: any, dragDocs: Doc[]) => void)> = undefined;
public SetIsDragging(dragging: boolean) { runInAction(() => this.IsDragging = dragging); }
public GetIsDragging() { return this.IsDragging; }
- public clearSnapLines() {
+ @action public clearSnapLines() {
this.vertSnapLines.length = 0;
this.horizSnapLines.length = 0;
}