From e0ed034044313a4b14f07ada044f20b6b30e2ffc Mon Sep 17 00:00:00 2001 From: DD Date: Fri, 8 Sep 2017 11:41:21 -0400 Subject: [PATCH] don't apply stroke color to brush --- src/containers/blob/style-path.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/containers/blob/style-path.js b/src/containers/blob/style-path.js index b0cbeaba..658d2f77 100644 --- a/src/containers/blob/style-path.js +++ b/src/containers/blob/style-path.js @@ -5,7 +5,6 @@ const stylePath = function (path, options) { // TODO: Add back brush styling. Keep a separate active toolbar style for brush vs pen. // path = pg.stylebar.applyActiveToolbarStyle(path); path.fillColor = options.fillColor; - path.strokeColor = options.strokeColor; } }; @@ -18,8 +17,6 @@ const styleCursorPreview = function (path, options) { // TODO: Add back brush styling. Keep a separate active toolbar style for brush vs pen. // path = pg.stylebar.applyActiveToolbarStyle(path); path.fillColor = options.fillColor; - path.strokeColor = options.strokeColor; - path.strokeWidth = 1; } };