Version 0.9.5.3 - Alpha (see changelog.txt)

This commit is contained in:
Kenny Shields 2013-02-25 05:28:14 -05:00
parent b834300a58
commit a8d2c571bb
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
================================================
Version 0.9.5.3 - Alpha (February 25 - 2013)
================================================
[FIXED] mousereleased never getting called on the collapsiblecategory's object
================================================
Version 0.9.5.2 - Alpha (February 24 - 2013)
================================================

View File

@ -216,7 +216,7 @@ function loveframes.debug.ExamplesMenu()
local panel1 = loveframes.Create("panel")
panel1:SetHeight(230)
local collapsiblecategory1 = loveframes.Create("collapsiblecategory", frame1)
collapsiblecategory1:SetPos(5, 30)
collapsiblecategory1:SetSize(490, 265)

View File

@ -9,7 +9,7 @@ loveframes = {}
-- library info
loveframes.info = {}
loveframes.info.author = "Kenny Shields"
loveframes.info.version = "0.9.5.2"
loveframes.info.version = "0.9.5.3"
loveframes.info.stage = "Alpha"
-- library configurations

View File

@ -200,7 +200,7 @@ function newobject:mousereleased(x, y, button)
end
if open and curobject then
curobject:mousepressed(x, y, button)
curobject:mousereleased(x, y, button)
end
end