egret-labs / egret-core

Egret is a brand new open mobile game and application engine which allows you to quickly build mobile games and apps on Android,iOS and Windows.
http://www.egret.com
Other
3.9k stars 787 forks source link

egret 5.4.0 文本输入后没有保存 #404

Open a406241691 opened 3 years ago

a406241691 commented 3 years ago

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

kent19871014 commented 3 years ago

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

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