aboutsummaryrefslogtreecommitdiff
path: root/lib/ui
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ui')
-rw-r--r--lib/ui/ui.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ui/ui.go b/lib/ui/ui.go
index 8fabf59..eb86e70 100644
--- a/lib/ui/ui.go
+++ b/lib/ui/ui.go
@@ -65,11 +65,6 @@ func (state *UI) Tick() bool {
select {
case event := <-state.tcEvents:
switch event := event.(type) {
- case *tcell.EventKey:
- // TODO: temporary
- if event.Key() == tcell.KeyEsc {
- state.Exit = true
- }
case *tcell.EventResize:
state.screen.Clear()
width, height := event.Size()