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: '))
|
label = gtk.Label(_('Search For: '))
|
||||||
hbox.pack_start(label, False, False, 0)
|
hbox.pack_start(label, False, False, 0)
|
||||||
label.show()
|
label.show()
|
||||||
combo = gtk.combo_box_entry_new_text()
|
combo = gtk.ComboBoxText.new_with_entry()
|
||||||
self.entry = combo.child
|
self.entry = combo.get_child()
|
||||||
self.entry.connect('activate', self.entry_cb)
|
self.entry.connect('activate', self.entry_cb)
|
||||||
|
|
||||||
if pattern is not None:
|
if pattern is not None:
|
||||||
|
|
Loading…
Reference in New Issue