diff --git a/tscreen.go b/tscreen.go index 8af337d..3ee78b3 100644 --- a/tscreen.go +++ b/tscreen.go @@ -168,11 +168,6 @@ func (t *tScreen) Init() error { t.colors[Color(i)|ColorValid] = Color(i) | ColorValid } - t.TPuts(ti.EnterCA) - t.TPuts(ti.HideCursor) - t.TPuts(ti.EnableAcs) - t.TPuts(ti.Clear) - t.quit = make(chan struct{}) t.Lock() diff --git a/tscreen_unix.go b/tscreen_unix.go index bc8d984..60bbcfd 100644 --- a/tscreen_unix.go +++ b/tscreen_unix.go @@ -47,6 +47,12 @@ func (t *tScreen) engage() error { t.enablePasting(t.pasteEnabled) signal.Notify(t.sigwinch, syscall.SIGWINCH) + ti := t.ti + t.TPuts(ti.EnterCA) + t.TPuts(ti.HideCursor) + t.TPuts(ti.EnableAcs) + t.TPuts(ti.Clear) + t.wg.Add(2) go t.inputLoop(stopQ) go t.mainLoop(stopQ)