mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
Version 0.9.5.6
This commit is contained in:
parent
cfa6c17108
commit
4614444ca4
@ -1,3 +1,8 @@
|
||||
================================================
|
||||
Version 0.9.5.6 - Alpha (March 29 - 2013)
|
||||
================================================
|
||||
[FIXED] numberbox:SetValue not functioning correctly
|
||||
|
||||
================================================
|
||||
Version 0.9.5.5 - Alpha (March 23 - 2013)
|
||||
================================================
|
||||
|
2
init.lua
2
init.lua
@ -9,7 +9,7 @@ loveframes = {}
|
||||
-- library info
|
||||
loveframes.info = {}
|
||||
loveframes.info.author = "Kenny Shields"
|
||||
loveframes.info.version = "0.9.5.5"
|
||||
loveframes.info.version = "0.9.5.6"
|
||||
loveframes.info.stage = "Alpha"
|
||||
|
||||
-- library configurations
|
||||
|
@ -269,9 +269,9 @@ function newobject:SetValue(value)
|
||||
local onvaluechanged = self.OnValueChanged
|
||||
|
||||
self.value = value
|
||||
input:SetValue(value)
|
||||
input:SetText(value)
|
||||
|
||||
if value ~= curvalue then
|
||||
if value ~= curvalue and onvaluechanged then
|
||||
onvaluechanged(self, value)
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user