Skip to content

Commit f9ef583

Browse files
committed
[LVGL] Missing argument in lv_obj_set_style_text_decor() when using text decoration #604
1 parent 92981c6 commit f9ef583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/project-editor/lvgl/style-catalog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2144,11 +2144,11 @@ const text_decor_property_info = makeEnumPropertyInfo(
21442144

21452145
let build = "";
21462146

2147-
if (value.indexOf("BOTTOM") != -1) {
2147+
if (value.indexOf("UNDERLINE") != -1) {
21482148
build = (build ? build + "|" : "") + "LV_TEXT_DECOR_UNDERLINE";
21492149
}
21502150

2151-
if (value.indexOf("TOP") != -1) {
2151+
if (value.indexOf("STRIKETHROUGH") != -1) {
21522152
build =
21532153
(build ? build + "|" : "") + "LV_TEXT_DECOR_STRIKETHROUGH";
21542154
}

0 commit comments

Comments
 (0)