From 9958d2fe41d6517f70d5daee873492bd51812630 Mon Sep 17 00:00:00 2001 From: Rasmus Lindroth Date: Sat, 7 May 2022 14:33:02 +0200 Subject: [PATCH] fix input for notification feed --- ui/input.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/input.go b/ui/input.go index c6e8212..09dd947 100644 --- a/ui/input.go +++ b/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 {