mirror of
https://github.com/lvgl/lvgl.git
synced 2026-08-17 01:31:53 +08:00
fix(api_map): fix sign conversion warning (#10414)
This commit is contained in:
@@ -95,7 +95,7 @@ static inline void lv_obj_move_foreground(lv_obj_t * obj)
|
||||
return;
|
||||
}
|
||||
|
||||
lv_obj_move_to_index(obj, lv_obj_get_child_count(parent) - 1);
|
||||
lv_obj_move_to_index(obj, (int32_t)lv_obj_get_child_count(parent) - 1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user