diff --git a/lv_misc/lv_txt.c b/lv_misc/lv_txt.c index 4f7cba25e..76b886854 100644 --- a/lv_misc/lv_txt.c +++ b/lv_misc/lv_txt.c @@ -201,16 +201,6 @@ lv_coord_t lv_txt_get_width(const char * txt, uint16_t length, width -= letter_space; /*Trim the last letter space. Important if the text is center aligned */ - - /*Trim closing spaces. Important when the text is aligned to the middle */ - for(i = length - 1; i > 0; i--) { - if(txt[i] == ' ' || txt[i] == '\n' || txt[i] == '\r') { - width -= lv_font_get_width(font, txt[i]); - width -= letter_space; - } else { - break; - } - } } return width;