diff options
author | Andy Rickert <andrew_rickert@brown.edu> | 2020-03-31 16:15:10 -0700 |
---|---|---|
committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-03-31 16:15:10 -0700 |
commit | b33ba2eb7a4bb6744f07c3ee8d86c55ec7b599b5 (patch) | |
tree | 88f4d21c08f4a1218000f8c8b88e2689e5247b0d /src/client/util/SelectionManager.ts | |
parent | 13e6b075154001ce33845a72454e3cd039a92670 (diff) |
more settings ui + huge bugfixes with document dragging and selection
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index 4fd8abb12..89b900115 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -16,6 +16,7 @@ export namespace SelectionManager { @action SelectDoc(docView: DocumentView, ctrlPressed: boolean): void { + console.log("select"); // if doc is not in SelectedDocuments, add it if (!manager.SelectedDocuments.get(docView)) { if (!ctrlPressed) { |