From 8a95ba3d2d3bb93abc29bf0b4a877d2658ebdb36 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Thu, 21 May 2026 22:31:19 -0400 Subject: increase default allocation for commands --- teensy/teensy_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'teensy/teensy_ui.c') diff --git a/teensy/teensy_ui.c b/teensy/teensy_ui.c index 04f0b95..b056a9c 100644 --- a/teensy/teensy_ui.c +++ b/teensy/teensy_ui.c @@ -227,7 +227,7 @@ Window create_window(const char *title, ty_Recti rect, uint32_t flags) win.rect = rect; win.flags = flags; win.cmds = ty_list_create(); - ty_list_reserve(win.cmds, 32); + ty_list_reserve(win.cmds, 64); return win; } -- cgit v1.3-2-g0d8e