Disable resizing in GroupchatInvitationReceived
This commit is contained in:
parent
b2b249c60b
commit
24352b57c7
|
@ -15,7 +15,7 @@
|
|||
<property name="label"><b>contact/jid</b> has invited you to the group chat <b>muc.jid</b></property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="max_width_chars">70</property>
|
||||
<property name="max_width_chars">50</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
|
@ -138,7 +138,7 @@
|
|||
<property name="no_show_all">True</property>
|
||||
<property name="label"><comment></property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="max_width_chars">70</property>
|
||||
<property name="max_width_chars">50</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
|
|
|
@ -1006,6 +1006,7 @@ class InvitationReceivedDialog(Gtk.ApplicationWindow):
|
|||
self.set_name('InvitationReceivedDialog')
|
||||
self.set_application(app.app)
|
||||
self.set_position(Gtk.WindowPosition.CENTER)
|
||||
self.set_resizable(False)
|
||||
self.set_show_menubar(False)
|
||||
self.set_title(_('Group Chat Invitation '))
|
||||
|
||||
|
|
Loading…
Reference in New Issue