docs(style) use correct API name for local styles (#2550)

This commit is contained in:
Miguel Magno
2021-09-12 09:09:50 -03:00
committed by GitHub
parent 37a5d0c85a
commit 5de6fbf847

View File

@@ -207,10 +207,10 @@ They are useful to add local customization to an object.
Unlike in CSS, LVGL local styles can be assigned to states (*pseudo-classes*) and parts (*pseudo-elements*). Unlike in CSS, LVGL local styles can be assigned to states (*pseudo-classes*) and parts (*pseudo-elements*).
To set a local property use functions like `lv_obj_set_style_local_<property_name>(obj, <value>, <selector>);`   To set a local property use functions like `lv_obj_set_style_<property_name>(obj, <value>, <selector>);`  
For example: For example:
```c ```c
lv_obj_set_style_local_bg_color(slider, lv_color_red(), LV_PART_INDICATOR | LV_STATE_FOCUSED); lv_obj_set_style_bg_color(slider, lv_color_red(), LV_PART_INDICATOR | LV_STATE_FOCUSED);
``` ```
## Properties ## Properties
For the full list of style properties click [here](/overview/style-props). For the full list of style properties click [here](/overview/style-props).