diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-26 06:57:11 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-26 06:57:11 -0400 |
| commit | 4515849e22e36caade729243879b7a81a4e5b5d5 (patch) | |
| tree | f7bcdab100c59936d39d04a41ed05a1efeb86e5c /redo/zz_test.go | |
| parent | 52e75e6ccea69025eb807c82beec700f827b7dba (diff) | |
Implemented TextField on Windows.
Diffstat (limited to 'redo/zz_test.go')
| -rw-r--r-- | redo/zz_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go index e7a48e7..e137494 100644 --- a/redo/zz_test.go +++ b/redo/zz_test.go @@ -48,6 +48,10 @@ func init() { w.SetTitle(fmt.Sprint(c.Checked())) }) t.Append("Checkbox", c) + e := NewTextField() + t.Append("Text Field", e) + e = NewPasswordField() + t.Append("Password Field", e) w.Show() }) <-done |
