fix corner radous for Label shape

This commit is contained in:
Anton Lavrenov 2015-12-23 14:16:03 +07:00
parent eda967c07e
commit 3616d38d85
4 changed files with 14 additions and 5 deletions

View File

@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- correct `Konva.Arrow` drawing. Now it works better.
- Better support for dragging when mouse out of stage
- Better corner radius for `Label` shape
### Added
- event delegation. You can use it in this way: `layer.on('click', 'Circle', handler);`

View File

@ -15767,10 +15767,14 @@ var Konva = {};
pointerDirection = this.getPointerDirection(),
pointerWidth = this.getPointerWidth(),
pointerHeight = this.getPointerHeight(),
cornerRadius = this.getCornerRadius();
cornerRadius = Math.min(this.getCornerRadius, width / 2, height / 2);
context.beginPath();
context.moveTo(0, 0);
if (!cornerRadius) {
context.moveTo(0, 0);
} else {
context.moveTo(cornerRadius, 0);
}
if (pointerDirection === UP) {
context.lineTo((width - pointerWidth) / 2, 0);

2
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -185,10 +185,14 @@
pointerDirection = this.getPointerDirection(),
pointerWidth = this.getPointerWidth(),
pointerHeight = this.getPointerHeight(),
cornerRadius = this.getCornerRadius();
cornerRadius = Math.min(this.getCornerRadius, width / 2, height / 2);
context.beginPath();
context.moveTo(0, 0);
if (!cornerRadius) {
context.moveTo(0, 0);
} else {
context.moveTo(cornerRadius, 0);
}
if (pointerDirection === UP) {
context.lineTo((width - pointerWidth) / 2, 0);