don't apply stroke color to brush

This commit is contained in:
DD 2017-09-08 11:41:21 -04:00
parent ce8fdaac1c
commit e0ed034044

View file

@ -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;
}
};