We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34853e2 commit bcd877cCopy full SHA for bcd877c
input.go
@@ -111,11 +111,7 @@ func (ip *inputProcessor) post(ev Event) {
111
}
112
113
114
- // this tries to post, will drop events that overflow
115
- select {
116
- case ip.evch <- ev:
117
- default:
118
- }
+ ip.evch <- ev
119
120
121
func (ip *inputProcessor) escTimeout() {
tscreen.go
@@ -230,7 +230,7 @@ func (t *tScreen) Init() error {
230
231
232
t.quit = make(chan struct{})
233
- t.eventQ = make(chan Event, 32)
+ t.eventQ = make(chan Event, 256)
234
t.input = NewInputProcessor(t.eventQ)
235
236
t.Lock()
0 commit comments