improve 3keys

This commit is contained in:
lixianjing 2023-11-16 15:45:04 +08:00
parent 519a245c50
commit 29b11c615f
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
2023/11/16
* 修复path\_basename\_ex 可能非法访问内存的问题(感谢俊圣提供补丁)
* 修复include路径问题(感谢文静提供补丁)
* 完善处理3keys事件处理(感谢颖健提供补丁)
2023/11/15
* 修复layout的auto\_adjust\_size不触发修改事件的问题以及增加判断auto\_adjust\_size(感谢智明提供补丁)

View File

@ -676,7 +676,7 @@ static ret_t window_on_keydown_before_children(void* ctx, event_t* e) {
case TK_KEY_LEFT:
case TK_KEY_UP: {
widget_focus_prev(focus);
break;
return RET_STOP;
}
case TK_KEY_RIGHT:
case TK_KEY_DOWN: {