Frame drag fix

Fixed a dragging bug on frames
This commit is contained in:
Robert Jelic
2022-08-29 18:50:18 +02:00
parent b10ec1770c
commit 23b94d076b
3 changed files with 18 additions and 12 deletions

View File

@@ -56,17 +56,21 @@ return function(name)
isVisible = false
self:updateDraw()
return self
end;
end,
enable = function(self)
isEnabled = true
return self
end;
end,
disable = function(self)
isEnabled = false
return self
end;
end,
isEnabled = function(self)
return isEnabled
end,
generateXMLEventFunction = function(self, func, val)
local createF = function(str)