improve edit to redraw after call edit_set_text

This commit is contained in:
lixianjing 2021-03-30 18:17:41 +08:00
parent 0abacd1af7
commit a98a015a13
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
* 修复 slider 控件的 bar\_size 属性过大画面不正常的问题(感谢智明提供补丁)
* 修改 mutable\_image 支持在 desiger 界面上面不刷新的功能(感谢智明提供补丁)
* 修复WHEEL\_BEFORE\_CHILDREN事件无法通过wheel\_event\_cast转换的问题感谢福明提供补丁
* 修改调用edit\_set\_text等函数后没有重绘的问题。
2021/03/28
* 修改一些注释错误。

View File

@ -1260,7 +1260,7 @@ static ret_t edit_set_text(widget_t* widget, const value_t* v) {
wstr_reset(&str);
return RET_OK;
return widget_invalidate_force(widget, NULL);
}
ret_t edit_set_prop(widget_t* widget, const char* name, const value_t* v) {