From ea2a2398a7b84023e897e2d2778fed7a4d7899c7 Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Thu, 16 Dec 2021 13:22:29 -0500 Subject: [PATCH] create_wtml.py: pretty sure we want searchable to be true --- create_wtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_wtml.py b/create_wtml.py index 0d1cdde..513fa97 100755 --- a/create_wtml.py +++ b/create_wtml.py @@ -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):