From 5546b9d740de8d774071328251413ec29c12d288 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Sun, 20 Mar 2022 21:40:17 +0100 Subject: [PATCH] fix(style): make color filter inherited --- src/misc/lv_style.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc/lv_style.c b/src/misc/lv_style.c index 2b9a1527a..5a75f7cf4 100644 --- a/src/misc/lv_style.c +++ b/src/misc/lv_style.c @@ -111,8 +111,8 @@ const uint8_t _lv_style_builtin_prop_flag_lookup_table[_LV_STYLE_NUM_BUILT_IN_PR [LV_STYLE_RADIUS] = 0, [LV_STYLE_CLIP_CORNER] = 0, [LV_STYLE_OPA] = LV_STYLE_PROP_INHERIT, - [LV_STYLE_COLOR_FILTER_DSC] = 0, - [LV_STYLE_COLOR_FILTER_OPA] = 0, + [LV_STYLE_COLOR_FILTER_DSC] = LV_STYLE_PROP_INHERIT, + [LV_STYLE_COLOR_FILTER_OPA] = LV_STYLE_PROP_INHERIT, [LV_STYLE_ANIM_TIME] = 0, [LV_STYLE_ANIM_SPEED] = 0, [LV_STYLE_TRANSITION] = 0,