properly decode string in history manager. Fixes #5430
This commit is contained in:
parent
b1173a2e87
commit
1c28dbfae9
|
@ -610,8 +610,8 @@ class HistoryManager:
|
|||
liststore, list_of_paths))
|
||||
|
||||
def on_search_db_button_clicked(self, widget):
|
||||
text = self.search_entry.get_text()
|
||||
if text == '':
|
||||
text = self.search_entry.get_text().decode('utf-8')
|
||||
if not text:
|
||||
return
|
||||
|
||||
self.welcome_vbox.hide()
|
||||
|
|
Loading…
Reference in New Issue