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

Merge pull request #1002 from littlevgl/table_click

Disable clickable property on tables
This commit is contained in:
Gabor Kiss-Vamosi 2019-04-05 06:24:47 +02:00 committed by GitHub
commit 264eacd0bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,6 +97,7 @@ lv_obj_t * lv_table_create(lv_obj_t * par, const lv_obj_t * copy)
} else {
lv_table_set_style(new_table, LV_TABLE_STYLE_BG, &lv_style_plain_color);
}
lv_obj_set_click(new_table, false); /*Can be removed if click support is added*/
}
/*Copy an existing table*/
else {