From cd1b18fbe9a5cbc9269456e157925ddcaa270224 Mon Sep 17 00:00:00 2001 From: Wim Rijnders Date: Sat, 22 Oct 2016 10:19:45 +0200 Subject: [PATCH] Fixed another silly indent --- lib/graph3d/Graph3d.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/graph3d/Graph3d.js b/lib/graph3d/Graph3d.js index 44c62ef3..1000b086 100644 --- a/lib/graph3d/Graph3d.js +++ b/lib/graph3d/Graph3d.js @@ -985,7 +985,7 @@ Graph3d.prototype._redrawLegend = function() { y = bottom - (step.getCurrent() - legendMin) / (legendMax - legendMin) * height; from = new Point2d(left - gridLineLen, y); to = new Point2d(left, y); - this._line(ctx, from, to); + this._line(ctx, from, to); ctx.textAlign = 'right'; ctx.textBaseline = 'middle';