home
·
contact
·
privacy
projects
/
ircplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63479e1
)
In _ClientWindowsManager.update(), don't abort after the first processed _PrivmsgWindow.
author
Christian Heller
<c.heller@plomlompom.de>
Sun, 10 Aug 2025 11:56:16 +0000
(13:56 +0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Sun, 10 Aug 2025 11:56:16 +0000
(13:56 +0200)
ircplom/client_tui.py
patch
|
blob
|
history
diff --git
a/ircplom/client_tui.py
b/ircplom/client_tui.py
index 46154b226a398059782a33a50705172c09935363..3916fb40735bafc75d0996ded9b7f8861d71a7a1 100644
(file)
--- 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):