From: Christian Heller Date: Sun, 10 Aug 2025 11:56:16 +0000 (+0200) Subject: In _ClientWindowsManager.update(), don't abort after the first processed _PrivmsgWindow. X-Git-Url: https://plomlompom.com/repos/booking/%7B%7B%20web_path%20%7D%7D/decks/static/balance?a=commitdiff_plain;p=ircplom In _ClientWindowsManager.update(), don't abort after the first processed _PrivmsgWindow. --- 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):