This repository was archived by the owner on Aug 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
src/SignsInternal/StudioWidgets Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ local GuiUtilities = require(script.Parent.GuiUtilities)
1010local CustomTextLabelClass = {}
1111CustomTextLabelClass .__index = CustomTextLabelClass
1212
13+ -- Creates a new CustomTextLabelClass
1314function CustomTextLabelClass .new (nameSuffix , height )
1415 local self = {}
1516 setmetatable (self , CustomTextLabelClass )
Original file line number Diff line number Diff 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
5757end
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)
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ function VerticalScrollingFrame:GetContentsFrame(): Frame
107107 return self ._scrollFrame
108108end
109109
110- -- Returns the UIListLayout used by this VerticalScrollingFrame
110+ -- Returns the Frame used by this VerticalScrollingFrame
111111function VerticalScrollingFrame :GetSectionFrame (): Frame
112112 return self ._section
113113end
You can’t perform that action at this time.
0 commit comments