fix keyboard can not be closed bug

This commit is contained in:
xianjimli 2020-03-26 17:06:40 +08:00
parent d7a43c161a
commit 8699984f44
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,9 @@
* 2020/03/26
* 完善 edit/mledit 对 enter 键的处理(感谢大恒提供补丁)。
* 完善窗口切换时焦点恢复的问题。
* 修复部分vg控件有可能看不到的问题感谢智明提供补丁
* 修复部分 vg 控件有可能看不到的问题(感谢智明提供补丁)。
* 修改软键盘无法关闭的 BUG。
* 2020/03/25
* 支持 scroll view 放在 slide view 中。(感谢 yeslee 提供补丁)。

View File

@ -172,7 +172,7 @@ static ret_t input_type_open_keyboard(input_method_t* im, int32_t input_type, bo
value_set_str(&v, close_anim_hint);
widget_set_prop(im->keyboard, WIDGET_PROP_CLOSE_ANIM_HINT, &v);
widget_on(win->parent, EVT_WINDOW_CLOSE, input_method_on_win_close, im);
widget_on(win, EVT_WINDOW_CLOSE, input_method_on_win_close, im);
return RET_OK;
}