提交 7df7dafe 编写于 作者: B bernard.xiong

fix textbox_set_value issue when text is "".

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@678 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 298a15f3
......@@ -326,6 +326,8 @@ void rtgui_textbox_set_value(struct rtgui_textbox* box, const char* text)
if (box->line_length > rt_strlen(text) + 1)
{
rt_memcpy(box->text, text, rt_strlen(text) + 1);
/* set current position */
box->position = 0;
return;
}
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册