diff options
| author | Riley Beckett <rbeckettvt@gmail.com> | 2025-10-20 00:01:01 -0400 |
|---|---|---|
| committer | Riley Beckett <rbeckettvt@gmail.com> | 2025-10-20 00:03:19 -0400 |
| commit | 5ce5fd4f047ba3a0531ffbfd9797f2406a9b5ceb (patch) | |
| tree | eb76e63cae3c8156f81cbfd3782d9b912405901d | |
| parent | d7045b8b8d422bca22c1eb078586a2513b50e94f (diff) | |
font fix maybe
| -rw-r--r-- | README.md | 7 | ||||
| -rw-r--r-- | font.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -17,3 +17,10 @@ To build: `make` - [ ] emacs keybindings - [ ] input fluff - [ ] "prompt" +- [ ] cursor +- [ ] emacs keybindings +- [ ] fuzzy filter +- [ ] config file +- [ ] input fluff +- [ ] unicode +- [ ] kerning @@ -66,7 +66,7 @@ bool freetype_init(client_state* state, const char* file) { } state->load_flags = FT_LOAD_RENDER; state->line_height = state->ft_face->size->metrics.height >> 6; - state->horizontal_spacing = state->line_height; + state->horizontal_spacing = state->line_height / 2.0f; return true; } |
