Fix change propagation with colors on groups

Closes #1152
This commit is contained in:
sasensi 2018-11-23 15:22:47 +01:00 committed by Jürg Lehni
parent 5d14559116
commit 06e0c43325
3 changed files with 41 additions and 0 deletions

View file

@ -302,3 +302,11 @@ test('Gradients with applyMatrix', function() {
comparePixels(path, shape);
});
test('LinkedColor for group colors', function() {
var item = new Group(new Path(), new Path());
item.strokeColor = 'red';
item.strokeColor.hue = 50;
item.strokeColor.hue = 100;
expect(0);
});