Fixed WSF_MULTI_CONTROL (wrong order of subcontrols), completed navbar, improved slider

This commit is contained in:
severin
2013-10-29 15:32:57 +01:00
parent 26e6a62e6b
commit 61f032a819
9 changed files with 84 additions and 48 deletions

View File

@@ -120,19 +120,17 @@ feature -- Rendering
across
controls as c
loop
Result := c.item.render + Result
Result := Result + c.item.render
end
Result := render_tag (Result, "")
end
feature -- Change
add_control (c: detachable G)
add_control (c: G)
-- Add a control to this multi control
do
if attached c as d then
controls.put_front (d)
end
controls.extend (c)
end
feature -- Properties