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

fix(style): fix trasition on bg_grad color

fixes: #4174
This commit is contained in:
Gabor Kiss-Vamosi 2023-04-28 10:37:06 +02:00
parent 363233d40b
commit ca1a6722c3

View File

@ -811,6 +811,7 @@ static void trans_anim_cb(void * _tr, int32_t v)
else value_final.ptr = tr->end_value.ptr; else value_final.ptr = tr->end_value.ptr;
break; break;
case LV_STYLE_BG_COLOR: case LV_STYLE_BG_COLOR:
case LV_STYLE_BG_GRAD_COLOR:
case LV_STYLE_BORDER_COLOR: case LV_STYLE_BORDER_COLOR:
case LV_STYLE_TEXT_COLOR: case LV_STYLE_TEXT_COLOR:
case LV_STYLE_SHADOW_COLOR: case LV_STYLE_SHADOW_COLOR: