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

Commit acd52c2

Browse files
committed
Minor changes.
1 parent 623ed06 commit acd52c2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/SignsInternal/StudioWidgets/CustomTextLabel.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ local GuiUtilities = require(script.Parent.GuiUtilities)
1010
local CustomTextLabelClass = {}
1111
CustomTextLabelClass.__index = CustomTextLabelClass
1212

13+
-- Creates a new CustomTextLabelClass
1314
function CustomTextLabelClass.new(nameSuffix, height)
1415
local self = {}
1516
setmetatable(self, CustomTextLabelClass)

src/SignsInternal/StudioWidgets/HorizontalTabBar.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ function HorizontalTabClass.new(suffix: string)
5050
self._selected = false
5151
self._hovered = false
5252

53-
-- self:_SetupTabHandling()
53+
self:_SetupTabHandling(self)
5454
-- HorizontalTabClass._SetupMouseClickHandling()
5555

5656
return self
5757
end
5858

59-
function HorizontalTabClass:_SetupTabHandling()
59+
function HorizontalTabClass:_SetupTabHandling(self)
6060
print(self._titlebar.Name)
6161
-- self._titlebar.ChildAdded:Connect(function()
6262
-- local tabButtonWidth = 1 / (#self._titlebar:GetChildren() - 1)

src/SignsInternal/StudioWidgets/VerticalScrollingFrame.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function VerticalScrollingFrame:GetContentsFrame(): Frame
107107
return self._scrollFrame
108108
end
109109

110-
-- Returns the UIListLayout used by this VerticalScrollingFrame
110+
-- Returns the Frame used by this VerticalScrollingFrame
111111
function VerticalScrollingFrame:GetSectionFrame(): Frame
112112
return self._section
113113
end

0 commit comments

Comments
 (0)