Merge branch 'fix/lvgl_oled_first_character' into 'master'

Fixed first character in LVGL OLED example.

Closes IDF-5748

See merge request espressif/esp-idf!20265
This commit is contained in:
morris 2022-09-21 03:57:14 +08:00
commit 087f9c07d9

View File

@ -12,6 +12,6 @@ void example_lvgl_demo_ui(lv_disp_t *disp)
lv_obj_t *label = lv_label_create(scr);
lv_label_set_long_mode(label, LV_LABEL_LONG_SCROLL_CIRCULAR); /* Circular scroll */
lv_label_set_text(label, "Hello Espressif, Hello LVGL.");
lv_obj_set_width(label, 150);
lv_obj_set_width(label, 128);
lv_obj_align(label, LV_ALIGN_TOP_MID, 0, 0);
}