From 3e7e55a9ca92bbc789994f49782ac4defad71b74 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 27 Dec 2025 12:25:25 +0100 Subject: [PATCH] Fixed announce stream keyboard navigation --- nomadnet/ui/textui/Network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomadnet/ui/textui/Network.py b/nomadnet/ui/textui/Network.py index 718d0a8..3edf31b 100644 --- a/nomadnet/ui/textui/Network.py +++ b/nomadnet/ui/textui/Network.py @@ -436,7 +436,7 @@ class AnnounceStream(urwid.WidgetWrap): super().__init__(urwid.LineBox(self.display_widget, title="Announce Stream")) def keypress(self, size, key): - if key == "up" and (self.no_content or self.ilb.first_item_is_selected()): + if key == "up" and self.pile.focus == self.tab_bar: nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" elif key == "ctrl x": self.delete_selected_entry()