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

Commit a903a04

Browse files
committed
Bug fixes.
1 parent e93cff8 commit a903a04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Workspace/SignsInternal/StudioWidgets/CustomTextLabel.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ function CustomTextLabelClass.new(nameSuffix, height)
3030
label.Parent = frame
3131

3232
local stroke = Instance.new("UIStroke")
33+
stroke.Color = Color3.fromRGB(255, 255, 255)
3334
if GuiUtilities:ShouldUseIconsForDarkerBackgrounds() == true then
34-
label.TextColor3 = Color3.fromRGB(0, 0, 0)
35+
stroke.Color = Color3.fromRGB(0, 0, 0)
3536
end
3637
stroke.Parent = label
3738

0 commit comments

Comments
 (0)