create_wtml.py: pretty sure we want searchable to be true

This commit is contained in:
Peter Williams 2021-12-16 13:22:29 -05:00
Родитель 562d442dcb
Коммит ea2a2398a7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -48,7 +48,7 @@ def realize_folder(info: dict, imagesets: dict):
f = Folder(name=info["_name"])
# TODO: FolderType
f.group = "Explorer"
f.searchable = False
f.searchable = True
for item in info["children"]:
if isinstance(item, dict):