From 677f042ec6325b9e31a3522354dc5825e037d92e Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Tue, 16 Jan 2024 08:55:46 +0100 Subject: [PATCH] increase font sizes for high-resolution screens --- node.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/node.lua b/node.lua index f26f93e..e84330d 100644 --- a/node.lua +++ b/node.lua @@ -4,6 +4,11 @@ local TOPBAR_FONT_SIZE = 70 local TALK_FONT_SIZE = 50 local PADDING = 20 +if NATIVE_HEIGHT > 1200 then + TOPBAR_FONT_SIZE = 140 + TALK_FONT_SIZE = 100 +end + local font_clock local font_day local font_room