Closed MiroslavMatas closed 3 months ago
maybe null-char exists in one of your text files/logs?
if not, try to make minimal repro: find on which file is fails. file with a bookmark.
test this. find folder 'py' and change cudatext.py like this in def tree_proc
def tree_proc(id_tree, id_action, id_item=0, index=0, text='', image_index=-1, data=''):
if chr(0) in text:
print('ERROR: tree_proc with null-char!', repr(text))
return
return ct.tree_proc(id_tree, id_action, id_item, index, to_str(text), image_index, data)
does it show more errors in console?
perfect, suggested change - a/ lead to resolving the problem + b/ help to find that "pesky" location
I added fix to Cudatext. It Will replace null chars. You can get updated Cudatext.py file from git.
it works fine on new/fresh install (just CT + Hotspot) and it is ok on 1.216.0.0 (my full configuration) what is necessary to verify on my side?