Fixed an error while trying to move the window by clicking and holding on a window line
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user