summaryrefslogtreecommitdiff
path: root/zz_test.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-12-12 19:26:02 -0500
committerPietro Gagliardi <[email protected]>2015-12-12 19:26:02 -0500
commit9fe564753c5a2677b25dd671441187f9463ffcf7 (patch)
tree13a7b3ad9daaac3abb9018d6289fdeed093b9fde /zz_test.go
parenta4c0102383b580dbc7f7acfd5fe45700b88a6d59 (diff)
Added Spinbox and Slider. That *should* leave just Group, Tab, and Box... (and Area of course, but I want to finalize the interface more first)
Diffstat (limited to 'zz_test.go')
-rw-r--r--zz_test.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/zz_test.go b/zz_test.go
index 491dbb5..b642210 100644
--- a/zz_test.go
+++ b/zz_test.go
@@ -11,10 +11,7 @@ func TestIt(t *testing.T) {
Quit()
return true
})
- s := NewRadioButtons()
- s.Append("Item 1")
- s.Append("Item 2")
- s.Append("Item 3")
+ s := NewSlider(0, 100)
w.SetChild(s)
w.SetMargined(true)
w.Show()