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

feat(textarea): make textarea editable (#6467)

This commit is contained in:
Masoud Soltanian 2024-07-05 06:05:31 +02:00 committed by GitHub
parent dca6c2d67a
commit 7089cb14e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,6 +72,7 @@ const lv_obj_class_t lv_textarea_class = {
.group_def = LV_OBJ_CLASS_GROUP_DEF_TRUE,
.width_def = LV_DPI_DEF * 2,
.height_def = LV_DPI_DEF,
.editable = LV_OBJ_CLASS_EDITABLE_TRUE,
.instance_size = sizeof(lv_textarea_t),
.base_class = &lv_obj_class,
.name = "textarea",