fix fillPattern cache

This commit is contained in:
Anton Lavrenov
2021-08-04 18:34:22 +07:00
parent 0357a1e7b4
commit 08c8a78451
7 changed files with 18 additions and 7 deletions

View File

@@ -1860,6 +1860,12 @@ describe('Shape', function () {
assert.notEqual(pattern4, pattern3);
star.fillPatternOffsetX(10);
var pattern5 = star._getFillPattern();
assert.notEqual(pattern4, pattern5);
done();
});
});