mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
Version 0.9.5.14 - Alpha (see changelog.txt)
This commit is contained in:
parent
27cad61b0a
commit
6947e97cc5
@ -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)
|
||||
================================================
|
||||
|
@ -294,7 +294,6 @@ function loveframes.debug.ExamplesMenu()
|
||||
------------------------------------
|
||||
-- grid example
|
||||
------------------------------------
|
||||
|
||||
local gridexample = loveframes.Create("button")
|
||||
gridexample:SetText("Grid")
|
||||
gridexample.OnClick = function(object1, x, y)
|
||||
|
2
init.lua
2
init.lua
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user