Version 0.9.5.9 - Alpha (see changelog.txt)

This commit is contained in:
Kenny Shields 2013-05-08 05:13:01 -04:00
parent 0723726757
commit 33fd22b1b2
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
================================================
Version 0.9.5.9 - Alpha (May 8 - 2013)
================================================
[FIXED] the slider event callback "OnRelease" not being called when the sliderbutton was released while being dragged in a non-hover state
================================================ ================================================
Version 0.9.5.8 - Alpha (May 5 - 2013) Version 0.9.5.8 - Alpha (May 5 - 2013)
================================================ ================================================

View File

@ -12,7 +12,7 @@ loveframes = {}
-- library info -- library info
loveframes.info = {} loveframes.info = {}
loveframes.info.author = "Kenny Shields" loveframes.info.author = "Kenny Shields"
loveframes.info.version = "0.9.5.8" loveframes.info.version = "0.9.5.9"
loveframes.info.stage = "Alpha" loveframes.info.stage = "Alpha"
-- library configurations -- library configurations

View File

@ -220,7 +220,7 @@ function newobject:mousereleased(x, y, button)
local down = self.down local down = self.down
local dragging = self.dragging local dragging = self.dragging
if down and dragging then if dragging then
local parent = self.parent local parent = self.parent
local onrelease = parent.OnRelease local onrelease = parent.OnRelease
if onrelease then if onrelease then