From a763990b0c93c02bc1a685f39adce865856940e6 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Fri, 24 Jun 2022 20:49:14 +0200 Subject: [PATCH] Update Label.md --- docs/objects/Label.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/objects/Label.md b/docs/objects/Label.md index 53cd2a5..228fa0c 100644 --- a/docs/objects/Label.md +++ b/docs/objects/Label.md @@ -16,6 +16,7 @@ local aInput = mainFrame:addLabel("myFirstLabel"):setText("Hello lovely basalt c ## setFontSize sets the font size of that text. +The font size is handled by bigfonts, if you're curious what bigfonts is, check out this page: http://www.computercraft.info/forums2/index.php?/topic/25367-bigfont-api-write-bigger-letters-v10/ ```lua local mainFrame = basalt.createFrame("myFirstFrame"):show() local aInput = mainFrame:addLabel("myFirstLabel"):setText("Hello"):setFontSize(2):show()