Fix typo in corescript and improve darklua config
This commit is contained in:
parent
5b4069d528
commit
44d7683349
|
|
@ -4,7 +4,7 @@
|
|||
"remove_comments",
|
||||
"remove_spaces",
|
||||
"group_local_assignment",
|
||||
"compute_expression",
|
||||
// "compute_expression",
|
||||
"remove_unused_if_branch",
|
||||
"remove_unused_while",
|
||||
"remove_empty_do",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
rules: [
|
||||
"remove_spaces",
|
||||
"group_local_assignment",
|
||||
"compute_expression",
|
||||
// "compute_expression",
|
||||
"remove_unused_if_branch",
|
||||
"remove_unused_while",
|
||||
"remove_empty_do",
|
||||
|
|
|
|||
|
|
@ -832,8 +832,8 @@ t.CreateTrueScrollingFrame = ->
|
|||
scrollDownButton.Name = "ScrollDownButton"
|
||||
scrollDownButton.Position = UDim2.new 0, 0, 1, -18
|
||||
downChildren = scrollDownButton\GetChildren!
|
||||
for i in *downChildren
|
||||
i.Position = UDim2.new 0, 3 + (i - 1), 0.5, -2 + (i - 1)
|
||||
for i = 1, #downChildren
|
||||
downChildren[i].Position = UDim2.new 0, 3 + (i - 1), 0.5, -2 + (i - 1)
|
||||
|
||||
scrollDownButton.MouseEnter\connect ->
|
||||
scrollDownButton.BackgroundTransparency = 0.1
|
||||
|
|
|
|||
Loading…
Reference in New Issue