mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 13:32:28 -05:00
don't apply stroke color to brush
This commit is contained in:
parent
ce8fdaac1c
commit
e0ed034044
1 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue