summaryrefslogtreecommitdiff
path: root/box.go
diff options
context:
space:
mode:
Diffstat (limited to 'box.go')
-rw-r--r--box.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/box.go b/box.go
index 486456e..65421d4 100644
--- a/box.go
+++ b/box.go
@@ -57,6 +57,7 @@ func (b *Box) Destroy() {
// Append adds the given control to the end of the Box.
func (b *Box) Append(child Control, stretchy bool) {
c := (*C.uiControl)(nil)
+ // TODO this part is wrong for Box?
if child != nil {
c = touiControl(child.LibuiControl())
}