Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2023-11-30 00:21:50 +0300
committerwurstsalat <mailtrash@posteo.de>2023-11-30 00:21:50 +0300
commit9373e7b4847a28bff397fbfc600b4e1566aa7543 (patch)
tree60e1b96842fd9330c3f74c36290808eb6c4c5060
parent83adf75c3246615de5ba9a3e8785b8054f117882 (diff)
cfix: StartChat: Use fitting variable name for GroupBadge
-rw-r--r--gajim/gtk/start_chat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gajim/gtk/start_chat.py b/gajim/gtk/start_chat.py
index abdbc3a0f..39efaf992 100644
--- a/gajim/gtk/start_chat.py
+++ b/gajim/gtk/start_chat.py
@@ -823,8 +823,8 @@ class ContactRow(Gtk.ListBoxRow):
if contact and not contact.is_groupchat and not contact.is_pm_contact:
groups = contact.groups
for group in groups:
- account_badge = GroupBadge(group)
- name_box.add(account_badge)
+ group_badge = GroupBadge(group)
+ name_box.add(group_badge)
box.add(name_box)