summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2cdff5b..f847a8b 100644
--- a/main.go
+++ b/main.go
@@ -14,7 +14,9 @@ func main() {
cb2 := NewCombobox(false, "You can't edit me!", "No you can't!", "No you won't!")
e := NewLineEdit("Enter text here too")
l := NewLabel("This is a label")
- s := NewStack(Vertical, b, c, cb1, cb2, e, l)
+ s0 := NewStack(Vertical, b, c, cb1, cb2, e, l)
+ lb := NewListbox(true, "Select One", "Or More", "To Continue")
+ s := NewStack(Horizontal, lb, s0)
err := w.Open(s)
if err != nil {
panic(err)