aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/GlobalKeyHandler.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-01-26 20:12:55 -0500
committerbobzel <zzzman@gmail.com>2021-01-26 20:12:55 -0500
commiteb2e88ef810eed9c1d31b3b2fdc3ba848f067c53 (patch)
tree0361b082b748472bb22ddfef756ab18ff2ad58b8 /src/client/views/GlobalKeyHandler.ts
parent00cea3c9faeccf82e7cf8b22a87a52b57566b97a (diff)
made StackedTimeline a collectionview and renamed CollectionStackedTimeline. Now timeline anchors will observe filters.
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
-rw-r--r--src/client/views/GlobalKeyHandler.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts
index a07ba0a77..e56ba38dd 100644
--- a/src/client/views/GlobalKeyHandler.ts
+++ b/src/client/views/GlobalKeyHandler.ts
@@ -24,7 +24,7 @@ import { DocumentDecorations } from "./DocumentDecorations";
import { InkStrokeProperties } from "./InkStrokeProperties";
import { MainView } from "./MainView";
import { DocumentLinksButton } from "./nodes/DocumentLinksButton";
-import { StackedTimeline } from "./nodes/StackedTimeline";
+import { CollectionStackedTimeline } from "./collections/CollectionStackedTimeline";
import { AnchorMenu } from "./pdf/AnchorMenu";
import { SearchBox } from "./search/SearchBox";
@@ -121,8 +121,8 @@ export class KeyManager {
DragManager.AbortDrag();
} else if (CollectionDockingView.Instance.HasFullScreen) {
CollectionDockingView.Instance.CloseFullScreen();
- } else if (StackedTimeline.SelectingRegion) {
- StackedTimeline.SelectingRegion = undefined;
+ } else if (CollectionStackedTimeline.SelectingRegion) {
+ CollectionStackedTimeline.SelectingRegion = undefined;
doDeselect = false;
} else {
doDeselect = !ContextMenu.Instance.closeMenu();