diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-30 09:57:44 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-30 09:57:44 -0400 |
| commit | 33155f7496a818a1ed83fe49cccb63be7842bc81 (patch) | |
| tree | bbb14af3d92becf7d5ca5abfb28630a2b413ad93 /test/spacing.go | |
| parent | e032807546a96e6489d18a0e42ced51b7c31a55c (diff) | |
Reverted everything back to the old API.
Diffstat (limited to 'test/spacing.go')
| -rw-r--r-- | test/spacing.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/spacing.go b/test/spacing.go index 610115f..367b0be 100644 --- a/test/spacing.go +++ b/test/spacing.go @@ -41,13 +41,14 @@ func spaceTest() { a2 := NewArea(w, h, ah) a3 := NewArea(w, h, ah) a4 := NewArea(w, h, ah) - win := NewWindow("Stack", 250, 250, nullwinhandler{}) + win := NewWindow("Stack", 250, 250) win.SetSpaced(true) win.Open(f(a1, a2)) - win = NewWindow("Grid", 250, 250, nullwinhandler{}) + win = NewWindow("Grid", 250, 250) win.SetSpaced(true) g := NewGrid(ng, a3, a4) g.SetFilling(0, 0) g.SetStretchy(gsx, gsy) win.Open(g) + select {} } |
