From 0ab8e790351f7b0105025add253819949d592781 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 10 Aug 2025 13:56:16 +0200 Subject: [PATCH] In _ClientWindowsManager.update(), don't abort after the first processed _PrivmsgWindow. --- ircplom/client_tui.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ircplom/client_tui.py b/ircplom/client_tui.py index 46154b2..3916fb4 100644 --- a/ircplom/client_tui.py +++ b/ircplom/client_tui.py @@ -128,11 +128,12 @@ class _ClientWindowsManager: 'Apply settings in kwargs, follow represntation update triggres.' for k, v in kwargs.items(): setattr(self, k, v) + tainteds = False if _PrivmsgPromptWidget.prefix_update_keys() & set(kwargs.keys()): for win in self.windows: self._if_privmsg_update_prefix(win) - return True - return False + tainteds = True + return tainteds class ClientTui(BaseTui): -- 2.30.2