Fix correct rendering of Konva.Label when heigh of text is changed

This commit is contained in:
Anton Lavrenov
2020-11-25 10:19:40 -05:00
parent e90442ab1c
commit ceae701fd8
5 changed files with 57 additions and 48 deletions

View File

@@ -277,6 +277,9 @@ suite('Label', function () {
layer.draw();
assert.equal(tag.width(), text.width());
text.height(200);
assert.equal(tag.height(), text.height());
});
test('tag cornerRadius', function () {