implement combobox and do some ui rework

This commit is contained in:
Eduardo Bart
2012-01-04 08:26:58 -02:00
parent 02ae3ac616
commit b8150d160e
48 changed files with 413 additions and 592 deletions

View File

@@ -49,9 +49,9 @@ local function onWidgetHoverChange(widget, hovered)
end
end
local function onWidgetStyleApply(widget, style)
if style and style.tooltip then
widget.tooltip = style.tooltip
local function onWidgetStyleApply(widget, styleName, styleNode)
if styleNode.tooltip then
widget.tooltip = styleNode.tooltip
end
end