diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-08 07:55:19 +0100 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-08 07:55:19 +0100 |
commit | ec8822c913652cad2b8ed31bd6bb513c641c3d11 (patch) | |
tree | d186e4f99c13c8a4b098d2e7c14ad7a1d1bac5a4 | |
parent | 08509f309dfb3a1b949fbb091ee36b83c33128f8 (diff) |
chat: Add missing nicklist update function
This is still a TODO as the function is just a stub. none of the
nicklist functionality is implemented yet.
-rw-r--r-- | src/chat.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/chat.py b/src/chat.py index 93b49a3..bb82af8 100644 --- a/src/chat.py +++ b/src/chat.py @@ -110,6 +110,10 @@ class WeegtkChat(Adw.Bin): # TODO start handling nicklist pass + def nicklist_update_item(self, parent, group, prefix, name, visible): + # TODO start handling nicklist + pass + def nicklist_refresh(self): # TODO start handling nicklist pass |