summaryrefslogtreecommitdiff
path: root/box.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2018-08-20 10:47:11 -0400
committerPietro Gagliardi <[email protected]>2018-08-20 10:47:11 -0400
commit62fcb5ffd0097875e7ccf67715803df61cd916b1 (patch)
tree7476e63f544577d8e6c313f54a59479bd33b9367 /box.go
parentc58171a39ef912e7eddb5d77e09096a5471f41ee (diff)
Added Form.
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())
}