From 0a9bb6ebbca481b163ee791ee5ea4a21d6321dbc Mon Sep 17 00:00:00 2001 From: Ronald Date: Sun, 29 Jun 2025 11:44:12 +0100 Subject: [PATCH] Increase default font size I think the rendering for fonts is bugged, but this temporarily makes the font usable --- constants.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.odin b/constants.odin index 22aaf7d..ee0c100 100644 --- a/constants.odin +++ b/constants.odin @@ -8,7 +8,7 @@ DEFAULT_WINDOW_MINIMUM_WINDOW_HEIGHT :: 200 // FONT DEFAULT_FONT :: "/usr/share/fonts/TTF/FiraCode-Regular.ttf" -DEFAULT_FONT_SIZE :: 11 +DEFAULT_FONT_SIZE :: 18 // DELAYS DEFAULT_DELAY :: 100 * time.Millisecond