Forgot to change double-click on char in chars report to only search inside tags

This commit is contained in:
Kovid Goyal 2018-03-08 12:31:06 +05:30
parent b302cacc1b
commit a31de75a39
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -874,7 +874,7 @@ class CharsWidget(QWidget):
ed = boss.edit_file_requested(file_name) ed = boss.edit_file_requested(file_name)
if ed is None: if ed is None:
return return
if ed.editor.find(pat, complete=not from_cursor): if ed.editor.find_text(pat, complete=not from_cursor):
boss.show_editor(file_name) boss.show_editor(file_name)
return True return True
return False return False