From 6f2d8e6ce39df86c76df082e5e1aa05f5b34c1f8 Mon Sep 17 00:00:00 2001 From: David Tsay <3614296+davetsay@users.noreply.github.com> Date: Thu, 3 Sep 2020 09:23:26 -0700 Subject: [PATCH] change time conductor bounds on zoom end (#3345) --- src/plugins/timeConductor/Conductor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/timeConductor/Conductor.vue b/src/plugins/timeConductor/Conductor.vue index ef7607c689..5da77f3373 100644 --- a/src/plugins/timeConductor/Conductor.vue +++ b/src/plugins/timeConductor/Conductor.vue @@ -260,7 +260,7 @@ export default { this.isZooming = false; if (bounds) { - this.handleNewBounds(bounds); + this.openmct.time.bounds(bounds); } else { this.setViewFromBounds(this.bounds); }