diff options
author | pommicket <pommicket@gmail.com> | 2025-09-30 11:27:10 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-30 11:27:10 -0400 |
commit | fa3dbac3c18ecf3238b141e6aea1dddcb388e65b (patch) | |
tree | f84e477f5b591125aff10091f0c9bf84952f370c /ide-code-action.c | |
parent | 270aa1468d95ef4b6a622ab80d2769ac2aaf6694 (diff) |
Fix some weird whitespace
Diffstat (limited to 'ide-code-action.c')
-rw-r--r-- | ide-code-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ide-code-action.c b/ide-code-action.c index 3161130..edcae7c 100644 --- a/ide-code-action.c +++ b/ide-code-action.c @@ -211,7 +211,7 @@ void code_action_frame(Ted *ted) { if (rect_contains_point(entry_rect, ted->mouse_pos)) { // hovering over this entry ted->cursor = ted->cursor_hand; - gl_geometry_rect(entry_rect, settings_color(settings, COLOR_AUTOCOMPLETE_HL)); + gl_geometry_rect(entry_rect, settings_color(settings, COLOR_AUTOCOMPLETE_HL)); } arr_foreach_ptr(ted->mouse_clicks[SDL_BUTTON_LEFT], const MouseClick, click) if (rect_contains_point(entry_rect, click->pos)) |