egret-core icon indicating copy to clipboard operation
egret-core copied to clipboard

egret 5.4.0 文本输入后没有保存

Open a406241691 opened this issue 4 years ago • 1 comments

创建游戏项目空工程,demo上的文本改成可输入的就必现,输入完成后当焦点离开文本框输入的文字消失。

a406241691 avatar Feb 05 '21 04:02 a406241691

似乎是改了這段造成的,再麻煩修復

inputElement.oninput = function () {
    if (self._stageText && inputLock) {
        inputLock = false;
        self._stageText._onInput();
    }
};

kent19871014 avatar Feb 23 '21 04:02 kent19871014