Fix SearchDialog (Ctrl+F) issues

This commit is contained in:
Romain Failliot 2016-07-04 22:48:45 -04:00
parent fa9907ac45
commit f5f8320da0
1 changed files with 2 additions and 2 deletions

View File

@ -6681,8 +6681,8 @@ class SearchDialog(gtk.Dialog):
label = gtk.Label(_('Search For: '))
hbox.pack_start(label, False, False, 0)
label.show()
combo = gtk.combo_box_entry_new_text()
self.entry = combo.child
combo = gtk.ComboBoxText.new_with_entry()
self.entry = combo.get_child()
self.entry.connect('activate', self.entry_cb)
if pattern is not None: