# HG changeset patch # User Michael Pavone # Date 1740901582 28800 # Node ID 9263d064294c0b101b7ef50ec569dc95f42ddd82 # Parent 6fdd845907c81c9b12739f59573c798a98b68ae6 Fix binding buttons getting cutoff diff -r 6fdd845907c8 -r 9263d064294c nuklear_ui/blastem_nuklear.c --- a/nuklear_ui/blastem_nuklear.c Sat Mar 01 17:28:29 2025 -0800 +++ b/nuklear_ui/blastem_nuklear.c Sat Mar 01 23:46:22 2025 -0800 @@ -961,7 +961,7 @@ nk_layout_space_push(context, nk_rect(x, y, width, (num_binds - skipped) * (row_height + 4) + 4)); nk_group_begin(context, name, NK_WINDOW_BORDER | NK_WINDOW_NO_SCROLLBAR); - float widths[] = {max_width + 3, width - (max_width + 6)}; + float widths[] = {max_width + 3, width - (max_width + 22)}; nk_layout_row(context, NK_STATIC, row_height, 2, widths); for (int i = 0; i < num_binds; i++) {