mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
Add columnlistheader:SetName
This commit is contained in:
parent
c95618354a
commit
4991ba1f32
@ -16,6 +16,7 @@ Version 0.9.9 - Alpha (Release Date TBD)
|
||||
[ADDED] a new columnlist method: GetTotalColumnWidth()
|
||||
[ADDED] a new columnlist method: SetColumnWidth(id, width)
|
||||
[ADDED] a new columnlist method: GetColumnWidth(id)
|
||||
[ADDED] a new columnlistheader method: SetName(name)
|
||||
|
||||
[FIXED] bug that would cause tabbuttons to be positioned incorrectly when scrolling with the mouse wheel
|
||||
[FIXED] collision detection issue caused by list child objects not being updated when outside of their parent's bounding box
|
||||
|
@ -205,6 +205,17 @@ function newobject:mousereleased(x, y, button)
|
||||
|
||||
end
|
||||
|
||||
--[[---------------------------------------------------------
|
||||
- func: SetName(name)
|
||||
- desc: sets the object's name
|
||||
--]]---------------------------------------------------------
|
||||
function newobject:SetName(name)
|
||||
|
||||
self.name = name
|
||||
return self
|
||||
|
||||
end
|
||||
|
||||
--[[---------------------------------------------------------
|
||||
- func: GetName()
|
||||
- desc: gets the object's name
|
||||
|
Loading…
Reference in New Issue
Block a user