Searched refs:layout_diff (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.7.0/src/core/ |
D | lv_obj_style.c | 408 bool layout_diff = false; in _lv_obj_style_state_compare() local 409 if(lv_style_get_prop(style, LV_STYLE_PAD_TOP, &v))layout_diff = true; in _lv_obj_style_state_compare() 410 else if(lv_style_get_prop(style, LV_STYLE_PAD_BOTTOM, &v)) layout_diff = true; in _lv_obj_style_state_compare() 411 else if(lv_style_get_prop(style, LV_STYLE_PAD_LEFT, &v)) layout_diff = true; in _lv_obj_style_state_compare() 412 else if(lv_style_get_prop(style, LV_STYLE_PAD_RIGHT, &v)) layout_diff = true; in _lv_obj_style_state_compare() 413 else if(lv_style_get_prop(style, LV_STYLE_PAD_COLUMN, &v)) layout_diff = true; in _lv_obj_style_state_compare() 414 else if(lv_style_get_prop(style, LV_STYLE_PAD_ROW, &v)) layout_diff = true; in _lv_obj_style_state_compare() 415 else if(lv_style_get_prop(style, LV_STYLE_LAYOUT, &v)) layout_diff = true; in _lv_obj_style_state_compare() 416 else if(lv_style_get_prop(style, LV_STYLE_TRANSLATE_X, &v)) layout_diff = true; in _lv_obj_style_state_compare() 417 else if(lv_style_get_prop(style, LV_STYLE_TRANSLATE_Y, &v)) layout_diff = true; in _lv_obj_style_state_compare() [all …]
|