Skip to content

Commit

Permalink
improve text_selector_scroll_to
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Nov 14, 2024
1 parent 2346525 commit eef3694
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
2024/11/14
* 修复 edit键盘长按Backspace键,弹出提示窗口后就不能连续删除字符(感谢兆坤提供补丁)
* 修复在edit输入内容时,鼠标移到并停留在其他控件弹出tips窗口后,edit无法输入内容(感谢兆坤提供补丁)
* 修复text_selector移动选项重叠时不触发value\ changed的问题(感谢颖健提供补丁)

2024/11/13
* 增加\ TK_STRINGIZE(感谢兆坤提供补丁)
Expand Down
1 change: 1 addition & 0 deletions src/ext_widgets/text_selector/text_selector.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,7 @@ static ret_t text_selector_scroll_to(widget_t* widget, int32_t yoffset_end) {

yoffset = text_selector->yoffset;
if (yoffset == yoffset_end) {
text_selector_on_scroll_done(widget, NULL);
return RET_OK;
}

Expand Down

0 comments on commit eef3694

Please sign in to comment.