Set title for InvitationReceivedDialog. Fixes #7383
This commit is contained in:
parent
66cd10258c
commit
256cd2f17f
|
@ -4592,8 +4592,10 @@ class InvitationReceivedDialog:
|
|||
gajim.connections[account].decline_invitation(self.room_jid,
|
||||
self.contact_fjid, text)
|
||||
|
||||
YesNoDialog(pritext, sectext, text_label=_('Reason (if you decline):'),
|
||||
on_response_yes=on_yes, on_response_no=on_no)
|
||||
dlg = YesNoDialog(pritext, sectext,
|
||||
text_label=_('Reason (if you decline):'), on_response_yes=on_yes,
|
||||
on_response_no=on_no)
|
||||
dlg.set_title(_('Groupchat Invitation'))
|
||||
|
||||
class ProgressDialog:
|
||||
def __init__(self, title_text, during_text, messages_queue):
|
||||
|
|
Loading…
Reference in New Issue