Compare commits

..

No commits in common. "11b0a8b3e4748f855f7cab5b7975f0f8e40e1172" and "31df820ebeb457a285b35a6ffa3b24185c11fff2" have entirely different histories.

4 changed files with 4 additions and 10 deletions

Binary file not shown.

View File

@ -475,12 +475,7 @@ function _Yosin_Windows_Mouse_Logic_(MouseState, Wheel, MousePos_X, MousePos_Y)
_Imm_Input_Func_ <- {};
//输入逻辑入口
function _Yosin_Imm_Input_Logic_(Str) {
foreach(Key, Func in _Imm_Input_Func_) {
local Ret = Func(Str);
//主体对象释放 删除自己
if (Ret == -1) {
_Imm_Input_Func_.rawdelete(Key);
}
foreach(Func in _Imm_Input_Func_) {
Func(Str);
}
}

View File

@ -69,7 +69,6 @@ class Yosin_InputBox extends Yosin_CommonUi {
//接收文本数据
function Imm_Input(str) {
if (!this) return -1;
if (!IsFocus) return;
//退格键
if (str == "\b") {

View File

@ -86,11 +86,11 @@ class _Login_Window extends Yosin_Window {
function RegisterWidget() {
//账号输入框
AccountInputBox = Yosin_InputBox(752, 240, 200);
local AccountInputBox = Yosin_InputBox(752, 240, 200);
AddUIChild(AccountInputBox);
//密码输入框
PasswordInputBox = Yosin_InputBox(752, 280, 200);
local PasswordInputBox = Yosin_InputBox(752, 280, 200);
AddUIChild(PasswordInputBox);
//登录按钮