Fix SearchDialog (Ctrl+F) issues
This commit is contained in:
parent
fa9907ac45
commit
f5f8320da0
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue