mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 13:38:15 +08:00
fix type, add changelog
This commit is contained in:
parent
f39c57d000
commit
3af5f0f012
@ -3,6 +3,8 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
- Fix text rendering when text has both underline and shadow
|
||||
|
||||
### 9.2.0 (2023-05-14)
|
||||
|
||||
- More controls on clipping
|
||||
|
@ -607,7 +607,7 @@ export class Text extends Shape<TextConfig> {
|
||||
_useBufferCanvas() {
|
||||
const hasUnderline = this.textDecoration().indexOf('underline') !== -1;
|
||||
const hasShadow = this.hasShadow();
|
||||
if (hasUnderline || hasShadow) {
|
||||
if (hasUnderline && hasShadow) {
|
||||
return true;
|
||||
}
|
||||
return super._useBufferCanvas();
|
||||
|
Loading…
Reference in New Issue
Block a user