Skip to content
Snippets Groups Projects
Commit 23ab28d7 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

restore combobox in disco window. Fixes #5656

parent ff34c61c
No related branches found
No related tags found
No related merge requests found
...@@ -70,13 +70,8 @@ Agent JID - node</property> ...@@ -70,13 +70,8 @@ Agent JID - node</property>
<object class="GtkComboBoxEntry" id="address_comboboxentry"> <object class="GtkComboBoxEntry" id="address_comboboxentry">
<property name="visible">True</property> <property name="visible">True</property>
<property name="model">liststore1</property> <property name="model">liststore1</property>
<property name="text_column">0</property>
<signal name="changed" handler="on_address_comboboxentry_changed"/> <signal name="changed" handler="on_address_comboboxentry_changed"/>
<child>
<object class="GtkCellRendererText" id="cellrenderertext1"/>
<attributes>
<attribute name="text">0</attribute>
</attributes>
</child>
</object> </object>
<packing> <packing>
<property name="left_attach">1</property> <property name="left_attach">1</property>
......
...@@ -549,10 +549,8 @@ _('Without a connection, you can not browse available services')) ...@@ -549,10 +549,8 @@ _('Without a connection, you can not browse available services'))
self.address_comboboxentry_entry = self.address_comboboxentry.child self.address_comboboxentry_entry = self.address_comboboxentry.child
self.address_comboboxentry_entry.set_activates_default(True) self.address_comboboxentry_entry.set_activates_default(True)
liststore = gtk.ListStore(str)
self.address_comboboxentry.set_model(liststore)
self.latest_addresses = gajim.config.get( self.latest_addresses = gajim.config.get(
'latest_disco_addresses').split() 'latest_disco_addresses').split()
if jid in self.latest_addresses: if jid in self.latest_addresses:
self.latest_addresses.remove(jid) self.latest_addresses.remove(jid)
self.latest_addresses.insert(0, jid) self.latest_addresses.insert(0, jid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment