Fixed an error while trying to move the window by clicking and holding on a window line

This commit is contained in:
Tercio Jose
2022-10-09 20:48:47 -03:00
parent 944178f76f
commit b588d5e30c
95 changed files with 1630 additions and 1662 deletions
+2 -2
View File
@@ -29,7 +29,7 @@
desc = ""
end
tinsert (_detalhes.row_animation_pool, {name = name, desc = desc, func = func, options = options})
tinsert(_detalhes.row_animation_pool, {name = name, desc = desc, func = func, options = options})
return true
end
@@ -47,7 +47,7 @@
function _detalhes:GetRowAnimationList()
local t = {}
for key, value in ipairs(_detalhes.row_animation_pool) do
tinsert (t, value.name)
tinsert(t, value.name)
end
return t
end