Skip to content

Commit 147bd1d

Browse files
authored
fix(cpn): Mac Companion build error on Github (#4863)
1 parent ecad4d6 commit 147bd1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: radio/src/gui/colorlcd/layouts/sliders.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
static const lv_style_const_prop_t shadow1_props[] = {
3030
// LV_STYLE_CONST_SHADOW_COLOR does not compile in GitHub ???
31-
{.prop = LV_STYLE_SHADOW_COLOR, .value {.color {.full = 0}}},
31+
{.prop = LV_STYLE_SHADOW_COLOR, .value = {.color = {.full = 0}}},
3232
LV_STYLE_CONST_SHADOW_OPA(LV_OPA_20),
3333
LV_STYLE_CONST_SHADOW_OFS_X(1),
3434
LV_STYLE_CONST_SHADOW_OFS_Y(1),
@@ -39,7 +39,7 @@ static LV_STYLE_CONST_MULTI_INIT(shadow1_style, shadow1_props);
3939

4040
static const lv_style_const_prop_t shadow2_props[] = {
4141
// LV_STYLE_CONST_SHADOW_COLOR does not compile in GitHub ???
42-
{.prop = LV_STYLE_SHADOW_COLOR, .value {.color {.full = 0}}},
42+
{.prop = LV_STYLE_SHADOW_COLOR, .value = {.color = {.full = 0}}},
4343
LV_STYLE_CONST_SHADOW_OPA(LV_OPA_40),
4444
LV_STYLE_CONST_SHADOW_OFS_X(1),
4545
LV_STYLE_CONST_SHADOW_OFS_Y(1),

0 commit comments

Comments
 (0)