mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-26 05:14:21 +00:00
Version 0.9.5.9 - Alpha (see changelog.txt)
This commit is contained in:
parent
0723726757
commit
33fd22b1b2
@ -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)
|
||||
================================================
|
||||
|
2
init.lua
2
init.lua
@ -12,7 +12,7 @@ loveframes = {}
|
||||
-- library info
|
||||
loveframes.info = {}
|
||||
loveframes.info.author = "Kenny Shields"
|
||||
loveframes.info.version = "0.9.5.8"
|
||||
loveframes.info.version = "0.9.5.9"
|
||||
loveframes.info.stage = "Alpha"
|
||||
|
||||
-- library configurations
|
||||
|
@ -220,7 +220,7 @@ function newobject:mousereleased(x, y, button)
|
||||
local down = self.down
|
||||
local dragging = self.dragging
|
||||
|
||||
if down and dragging then
|
||||
if dragging then
|
||||
local parent = self.parent
|
||||
local onrelease = parent.OnRelease
|
||||
if onrelease then
|
||||
|
Loading…
Reference in New Issue
Block a user