Version 0.9.5.14 - Alpha (see changelog.txt)

This commit is contained in:
Kenny Shields 2013-06-25 06:58:35 -04:00
parent 27cad61b0a
commit 6947e97cc5
5 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
================================================
Version 0.9.5.14 - Alpha (June 25 - 2013)
================================================
[FIXED] columnlistheaders and columnlistrows not being clickable when the columnlist object was using a custom state
================================================
Version 0.9.5.13 - Alpha (June 24 - 2013)
================================================

View File

@ -294,7 +294,6 @@ function loveframes.debug.ExamplesMenu()
------------------------------------
-- grid example
------------------------------------
local gridexample = loveframes.Create("button")
gridexample:SetText("Grid")
gridexample.OnClick = function(object1, x, y)

View File

@ -11,7 +11,7 @@ loveframes = {}
-- library info
loveframes.info = {}
loveframes.info.author = "Kenny Shields"
loveframes.info.version = "0.9.5.13"
loveframes.info.version = "0.9.5.14"
loveframes.info.stage = "Alpha"
-- library configurations

View File

@ -14,6 +14,7 @@ function newobject:initialize(parent, data)
self.type = "columnlistrow"
self.parent = parent
self.state = parent.state
self.colorindex = self.parent.rowcolorindex
self.font = loveframes.basicfontsmall
self.width = 80

View File

@ -15,6 +15,7 @@ function newobject:initialize(name, parent)
self.type = "columnlistheader"
self.parent = parent
self.name = name
self.state = parent.state
self.width = 80
self.height = self.parent.columnheight
self.hover = false