Version 0.9.5.6

This commit is contained in:
Kenny Shields 2013-03-29 15:14:45 -04:00
parent cfa6c17108
commit 4614444ca4
3 changed files with 8 additions and 3 deletions

View File

@ -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)
================================================

View File

@ -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

View File

@ -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