diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-28 10:30:53 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-28 10:30:53 -0400 |
| commit | ff4f0ec25e180301db396c201fd2b91ce52622fe (patch) | |
| tree | 59e0149b6b26590f18ec3b7956e33efc39dc214c /redo/zz_test.go | |
| parent | 72c56d6e16e11d3818acaf6053ecc876cb86758d (diff) | |
Improved control transparency on Windows.
Diffstat (limited to 'redo/zz_test.go')
| -rw-r--r-- | redo/zz_test.go | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go index 0afd7d7..dbf68bc 100644 --- a/redo/zz_test.go +++ b/redo/zz_test.go @@ -116,13 +116,20 @@ func (tw *testwin) addfe() { OpenFile(tw.w, tw.openFile) }) tw.fnlabel = NewStandaloneLabel("<no file selected>") - tw.festack = NewVerticalStack(tw.festart, tw.felabel, tw.festop, + tw.festack = NewVerticalStack(tw.festart, + tw.felabel, + tw.festop, + NewCheckbox("This is a checkbox test"), Space(), tw.vedit, Space(), + NewCheckbox("This is a checkbox test"), tw.openbtn, tw.fnlabel) - tw.festack.SetStretchy(3) - tw.festack.SetStretchy(5) + tw.festack.SetStretchy(4) + tw.festack.SetStretchy(6) + tw.festack = NewHorizontalStack(tw.festack, Space()) + tw.festack.SetStretchy(0) + tw.festack.SetStretchy(1) tw.t.Append("Foreign Events", tw.festack) } |
