diff options
Diffstat (limited to 'src/core/lv_obj_style.h')
-rw-r--r-- | src/core/lv_obj_style.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/lv_obj_style.h b/src/core/lv_obj_style.h index face6f9d2..ff4e365d8 100644 --- a/src/core/lv_obj_style.h +++ b/src/core/lv_obj_style.h @@ -26,10 +26,10 @@ extern "C" { **********************/ typedef enum { - LV_STYLE_STATE_CMP_SAME, /*The style properties in the 2 states are identical*/ - LV_STYLE_STATE_CMP_DIFF_REDRAW, /*The differences can be shown with a simple redraw*/ - LV_STYLE_STATE_CMP_DIFF_DRAW_PAD, /*The differences can be shown with a simple redraw*/ - LV_STYLE_STATE_CMP_DIFF_LAYOUT, /*The differences can be shown with a simple redraw*/ + LV_STYLE_STATE_CMP_SAME, /**< The style properties in the 2 states are identical */ + LV_STYLE_STATE_CMP_DIFF_REDRAW, /**< The differences can be shown with a simple redraw */ + LV_STYLE_STATE_CMP_DIFF_DRAW_PAD, /**< The differences can be shown with a simple redraw */ + LV_STYLE_STATE_CMP_DIFF_LAYOUT, /**< The differences can be shown with a simple redraw */ } lv_style_state_cmp_t; typedef uint32_t lv_style_selector_t; |