Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 974f324

Browse files
committed
Fixed sizing bug.
1 parent c83077a commit 974f324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SignsInternal/StudioWidgets/CustomTextLabel.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function CustomTextLabelClass.new(nameSuffix, height)
2929
label.BackgroundTransparency = 1
3030
label.Size = UDim2.new(1, 0, 1, 0)
3131
label.Font = GuiUtilities.kDefaultFontFace
32-
label.TextSize = GuiUtilities.kDefaultFontSize
32+
label.TextSize = 15 or GuiUtilities.kDefaultFontSize
3333
label.TextWrapped = true
3434
label.Parent = frame
3535
self._label = label

0 commit comments

Comments
 (0)