Add scrollbody:GetScrollBar

This commit is contained in:
Kenny Shields 2014-08-23 15:51:33 -04:00
parent ff339b0fcf
commit 8fb82f7d7a
2 changed files with 11 additions and 0 deletions

View File

@ -17,6 +17,7 @@ Version 0.9.9 - Alpha (Release Date TBD)
[ADDED] a new columnlist method: SetColumnWidth(id, width)
[ADDED] a new columnlist method: GetColumnWidth(id)
[ADDED] a new columnlistheader method: SetName(name)
[ADDED] a new scrollbody method: GetScrollBar()
[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

View File

@ -194,3 +194,13 @@ function newobject:draw()
end
end
--[[---------------------------------------------------------
- func: GetScrollBar()
- desc: gets the object's scroll bar
--]]---------------------------------------------------------
function newobject:GetScrollBar()
return self.internals[1].internals[1]
end