diff options
| -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; } |
