From 785f5e5cc600ebea5052e2327d7c0dd89f885835 Mon Sep 17 00:00:00 2001 From: Diego Rey <diego.despaux@izundo.com> Date: Thu, 20 Sep 2018 20:27:41 -0300 Subject: [PATCH] Fixed speed controls --- .../src/app/layout/plotter/graph2D/graph2D.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend Angular 4/src/app/layout/plotter/graph2D/graph2D.component.ts b/Frontend Angular 4/src/app/layout/plotter/graph2D/graph2D.component.ts index 4329cdc..95a4228 100755 --- a/Frontend Angular 4/src/app/layout/plotter/graph2D/graph2D.component.ts +++ b/Frontend Angular 4/src/app/layout/plotter/graph2D/graph2D.component.ts @@ -354,7 +354,7 @@ export class Graph2DComponent { * @desc Decrease Speed Animation */ public decreaseSpeed = function() { - if (this.animation.speedX > 0.07) { + if (this.animation.speedX > 0.19) { this.animation.speed *= 1.1; this.animation.speedX -= 0.1; this.pauseAnimation(); -- GitLab