aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rw-r--r--font.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6441610..621360a 100644
--- a/README.md
+++ b/README.md
@@ -17,3 +17,10 @@ To build: `make`
- [ ] emacs keybindings
- [ ] input fluff
- [ ] "prompt"
+- [ ] cursor
+- [ ] emacs keybindings
+- [ ] fuzzy filter
+- [ ] config file
+- [ ] input fluff
+- [ ] unicode
+- [ ] kerning
diff --git a/font.c b/font.c
index 9b0ba48..c67e427 100644
--- a/font.c
+++ b/font.c
@@ -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;
}