mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-04-28 01:04:43 +00:00
Clear only the itext area top context when animating cursor or selection (#2996)
This commit is contained in:
parent
cfe0e27d19
commit
dfb5e4e903
1 changed files with 2 additions and 3 deletions
|
|
@ -493,13 +493,12 @@
|
|||
|
||||
ctx.fillStyle = this.getCurrentCharColor(lineIndex, charIndex);
|
||||
ctx.globalAlpha = this.__isMousedown ? 1 : this._currentCursorOpacity;
|
||||
|
||||
ctx.clearRect(-this.width / 2, -this.height / 2, this.width, this.height);
|
||||
ctx.fillRect(
|
||||
boundaries.left + leftOffset,
|
||||
boundaries.top + boundaries.topOffset,
|
||||
this.cursorWidth / this.scaleX,
|
||||
charHeight);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
@ -540,7 +539,7 @@
|
|||
boxWidth += this._getWidthOfChar(ctx, line[j2], i, j2);
|
||||
}
|
||||
}
|
||||
|
||||
ctx.clearRect(-this.width / 2, -this.height / 2, this.width, this.height);
|
||||
ctx.fillRect(
|
||||
boundaries.left + lineOffset,
|
||||
boundaries.top + boundaries.topOffset,
|
||||
|
|
|
|||
Loading…
Reference in a new issue