commit 76 search works

This commit is contained in:
2025-08-09 00:00:08 +02:00
parent 9e495cc73c
commit 11bcf5cc7a
2 changed files with 1 additions and 1 deletions

View File

@@ -337,7 +337,7 @@ class CustomFileDialog(tk.Toplevel):
if not os.path.exists(search_dir):
continue
cmd = ['find', '-L', search_dir, '-iname', f'*{search_term}*']
cmd = ['find', '.', search_dir, '-iname', f'*{search_term}*']
if not is_recursive:
cmd.insert(3, '-maxdepth')
cmd.insert(4, '1')