diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-09-28 20:10:07 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-01-11 15:23:39 +0100 |
commit | a338adecd93b328816b4a3ff51bfb278377c7cf9 (patch) | |
tree | 6abd7791bae10213d34b7a2928f08f4f77190fc0 /tests | |
parent | 44e987c8521a99519350a42292bcfcd28451dcbd (diff) |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/main.c b/tests/main.c index 00fcd1f..e1f49d4 100644 --- a/tests/main.c +++ b/tests/main.c @@ -47,7 +47,7 @@ int main() { //mgui_list_set_spacing(list, 30); for(int i = 0; i < 60; ++i) { char text[256]; - snprintf(text, sizeof(text), "hello world 東京 %d", i); + snprintf(text, sizeof(text), "hello world 東京\nNext line %d", i); mgui_list_append(list, mgui_list_to_widget(create_list_item(NULL, "User", text))); } |