Browse Source

fix input for notification feed

pull/136/head 1.0.1
Rasmus Lindroth 4 years ago
parent
commit
9958d2fe41
  1. 4
      ui/input.go

4
ui/input.go

@ -109,7 +109,9 @@ func (tv *TutView) InputMainViewFeed(event *tcell.EventKey) *tcell.EventKey {
tv.Timeline.PrevItemFeed(mainFocus)
return nil
case 'n', 'N':
tv.FocusNotification()
if tv.tut.Config.General.NotificationFeed {
tv.FocusNotification()
}
return nil
case 'q', 'Q':
if mainFocus {

Loading…
Cancel
Save