From 34ae88ffc142e6dfe0e3c8a4bbb3f43d76b64df0 Mon Sep 17 00:00:00 2001 From: Stefan Dietz Date: Wed, 10 Aug 2016 12:13:16 +0200 Subject: [PATCH] Change borderScaleFactor behaviour (#2930) --- src/shapes/object.class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapes/object.class.js b/src/shapes/object.class.js index cfef9c70fdd..2dedf43770b 100644 --- a/src/shapes/object.class.js +++ b/src/shapes/object.class.js @@ -1183,7 +1183,7 @@ ctx.save(); ctx.translate(options.translateX, options.translateY); - ctx.lineWidth = 1 / this.borderScaleFactor; + ctx.lineWidth = 1 * this.borderScaleFactor; ctx.globalAlpha = this.isMoving ? this.borderOpacityWhenMoving : 1; if (this.group && this.group === this.canvas.getActiveGroup()) {