File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 22
33## [ next]
44
5+ - fix(): Allow for brush subclassing moving some properties from private to protected. [ #10416 ] ( https://github.com/fabricjs/fabric.js/pull/10416 )
56- feat(): Add method toBlob. [ #3283 ] ( https://github.com/fabricjs/fabric.js/issues/3283 )
67
78## [ 6.5.4]
Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ export class PencilBrush extends BaseBrush {
4040 */
4141 straightLineKey : ModifierKey | undefined | null = 'shiftKey' ;
4242
43- private declare _points : Point [ ] ;
44- private declare _hasStraightLine : boolean ;
45- private declare oldEnd ?: Point ;
43+ protected declare _points : Point [ ] ;
44+ protected declare _hasStraightLine : boolean ;
45+ protected declare oldEnd ?: Point ;
4646
4747 constructor ( canvas : Canvas ) {
4848 super ( canvas ) ;
You can’t perform that action at this time.
0 commit comments