don't pause territory drawing on drag

This commit is contained in:
Evan
2025-02-09 20:56:12 -08:00
parent 34007a8248
commit 67b9c869cf
+2 -1
View File
@@ -123,7 +123,8 @@ export class TerritoryLayer implements Layer {
this.alternativeView = e.alternateView;
});
this.eventBus.on(DragEvent, (e) => {
this.lastDragTime = Date.now();
// TODO: consider re-enabling this on mobile or low end devices for smoother dragging.
// this.lastDragTime = Date.now();
});
this.redraw();
}