home · contact · privacy
In _ClientWindowsManager.update(), don't abort after the first processed _PrivmsgWindow.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 10 Aug 2025 11:56:16 +0000 (13:56 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 10 Aug 2025 11:56:16 +0000 (13:56 +0200)
ircplom/client_tui.py

index 46154b226a398059782a33a50705172c09935363..3916fb40735bafc75d0996ded9b7f8861d71a7a1 100644 (file)
@@ -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):