removed font size

This commit is contained in:
phixxy 2024-02-02 23:18:19 -08:00
parent 889dc72d7a
commit cdcf11fabd

View file

@ -44,7 +44,7 @@ class InkyScreen(commands.Cog):
y = 0 y = 0
for line in text: for line in text:
if y <= width: if y <= width:
draw.text((x, y), line, self.display.YELLOW, size=18) draw.text((x, y), line, self.display.YELLOW)
y -= height_diff y -= height_diff
else: else:
self.bot.logger.warning("InkyScreen: Text too long to fit on image.") self.bot.logger.warning("InkyScreen: Text too long to fit on image.")