From 16eecaeaaff58b11310409802aeb321c0ff3d64a Mon Sep 17 00:00:00 2001 From: LIU Yu Date: Tue, 12 Aug 2025 02:34:13 +0800 Subject: [PATCH] chore(examples/scroll): remove unnecessary chinese comments that cause VC compilation failure (#8668) --- examples/scroll/lv_example_scroll_8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/scroll/lv_example_scroll_8.c b/examples/scroll/lv_example_scroll_8.c index cf4296bfeb..1f06bcf209 100644 --- a/examples/scroll/lv_example_scroll_8.c +++ b/examples/scroll/lv_example_scroll_8.c @@ -14,7 +14,7 @@ static int32_t get_content_width(lv_obj_t * cont) { int32_t w = 0; - int32_t pad_column = lv_obj_get_style_pad_column(cont, LV_PART_MAIN); // 列间距 + int32_t pad_column = lv_obj_get_style_pad_column(cont, LV_PART_MAIN); int32_t total = (int32_t)lv_obj_get_child_count(cont); for(int32_t i = 0; i < total; i++) {