From 20dcc48bee158edbeb5b7ba5893f613bfbf11889 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 7 Mar 2014 15:01:42 -0500 Subject: Changed Combobox.Append() and Listbox.Append() to accept multiple strings in one call. --- test/main.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/main.go b/test/main.go index af886c6..31fa243 100644 --- a/test/main.go +++ b/test/main.go @@ -69,6 +69,8 @@ func myMain() { i++ } doAdjustments() + cb1.Append("append multi 1", "append multi 2") + lb2.Append("append multi 1", "append multi 2") s1 := NewVerticalStack(lb2, lb1) s1.SetStretchy(0) s1.SetStretchy(1) @@ -126,6 +128,8 @@ mainloop: prog = 100 } pbar.SetProgress(prog) + cb1.Append("append multi 1", "append multi 2") + lb2.Append("append multi 1", "append multi 2") case <-decButton.Clicked: prog-- if prog < 0 { -- cgit v1.2.3