mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-10 23:03:10 +00:00
Fix unicode space char (#4224)
This commit is contained in:
parent
9fc678825e
commit
e9a5d0000e
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ fabric.util.object.extend(fabric.IText.prototype, /** @lends fabric.IText.protot
|
|||
* @param {Event} e Event object
|
||||
*/
|
||||
onKeyDown: function(e) {
|
||||
if (!this.isEditing || this.inCompositionMode) {
|
||||
if (!this.isEditing || this.inCompositionMode) {
|
||||
return;
|
||||
}
|
||||
if (e.keyCode in this.keysMap) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue