aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
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;
}