diff options
Diffstat (limited to 'sysdata_unix.go')
| -rw-r--r-- | sysdata_unix.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdata_unix.go b/sysdata_unix.go index c07545a..143a64c 100644 --- a/sysdata_unix.go +++ b/sysdata_unix.go @@ -156,6 +156,12 @@ func (s *sysData) make(initText string, window *sysData) error { return nil } +// used for Windows; nothing special needed elsewhere +func (s *sysData) firstShow() error { + s.show() + return nil +} + func (s *sysData) show() error { ret := make(chan struct{}) defer close(ret) |
