1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Also making \r break lines in labels

This commit is contained in:
Chris Chua 2019-12-04 04:43:16 +11:00
parent 4037a68ccc
commit eb614c32b3

View File

@ -303,9 +303,9 @@ uint16_t lv_txt_get_next_line(const char * txt, const lv_font_t * font,
i += advance;
if(txt[0] == '\n') break;
if(txt[0] == '\n' || txt[0] == '\r') break;
if(txt[i] == '\n'){
if(txt[i] == '\n' || txt[i] == '\r'){
i++; /* Include the following newline in the current line */
break;
}