aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/bigclock.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/bigclock.lua b/plugins/bigclock.lua
index 67d62e2..e35cdbe 100644
--- a/plugins/bigclock.lua
+++ b/plugins/bigclock.lua
@@ -27,11 +27,12 @@ end
function ClockView:update_fonts()
- local size = math.floor(self.size.x * 0.15) * config.bigclock_scale
+ local size = math.floor(self.size.x * 0.15 / 15) * 15 * config.bigclock_scale
if self.font_size ~= size then
self.time_font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", size)
self.date_font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", size * 0.3)
self.font_size = size
+ collectgarbage()
end
return self.font
end