Merge pull request #147 from kenan-rhoton/CloseInit

Init() cleanly after Close()
This commit is contained in:
Caleb Bassi 2018-08-16 23:04:33 -07:00
commit 5d65a22da1
2 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,7 @@ func NewSysEvtCh() chan Event {
return ec
}
var DefaultEvtStream = NewEvtStream()
var DefaultEvtStream *EvtStream
type EvtStream struct {
sync.RWMutex

View File

@ -34,6 +34,7 @@ func Init() error {
return err
}
tm.SetInputMode(tm.InputEsc | tm.InputMouse)
DefaultEvtStream = NewEvtStream()
sysEvtChs = make([]chan Event, 0)
go hookTermboxEvt()