Skip to content
Snippets Groups Projects
Commit 06cf27f6 authored by Mateusz Biliński's avatar Mateusz Biliński
Browse files

Fixed bug when national character (non-ASCII) was entered which search string...

Fixed bug when national character (non-ASCII) was entered which search string in ACE (comparison with descriptions, which are unicode, was not possible). It seems that this was Win32 specific (tested on Vista64).
parent b19d4e63
No related branches found
No related tags found
No related merge requests found
......@@ -267,7 +267,7 @@ class AdvancedConfigurationWindow(object):
self.model.append(parent, [name, value, type_])
def visible_func(self, model, treeiter):
search_string = self.entry.get_text().lower()
search_string = self.entry.get_text().decode('utf-8').lower()
for it in tree_model_pre_order(model,treeiter):
if model[it][C_TYPE] != '':
opt_path = self.get_option_path(model, it)
......
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