The tabs object will only draw tabbuttons that are within its button area

This commit is contained in:
Kenny Shields 2014-01-20 17:22:40 -05:00
parent 63e6f2fdb7
commit 476a11b1e9

View File

@ -169,7 +169,10 @@ function newobject:draw()
end
for k, v in ipairs(internals) do
v:draw()
local col = loveframes.util.BoundingBox(x + self.buttonareax, v.x, self.y, v.y, self.buttonareawidth, v.width, tabheight, v.height)
if col or v.type == "scrollbutton" then
v:draw()
end
end
love.graphics.setStencil()