1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

remove test code from lv_mbox_set_text

This commit is contained in:
Gabor Kiss-Vamosi 2019-11-02 21:44:12 +01:00
parent 62e6397f82
commit 916133f8b7

View File

@ -184,7 +184,6 @@ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt)
lv_mbox_ext_t * ext = lv_obj_get_ext_attr(mbox);
lv_label_set_text(ext->text, txt);
lv_label_set_align(ext->text, LV_LABEL_ALIGN_LEFT);
mbox_realign(mbox);
}