From 56ef2dba102ba9dd06893fb9b4ee59da68104471 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Thu, 19 Oct 2023 10:33:23 +0800 Subject: [PATCH] Fix wrong way to build theme item paths --- scripts/extract_properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/extract_properties.py b/scripts/extract_properties.py index 59a93d8..7375f84 100644 --- a/scripts/extract_properties.py +++ b/scripts/extract_properties.py @@ -180,7 +180,7 @@ def process_file(f, fname): if theme_item: if theme_item == "stylebox": theme_item = "style" - property_path = "theme_overrides_" + theme_item + "/" + property_path + property_path = "theme_override_" + theme_item + "s/" + property_path if current_subgroup: if msg.startswith(current_subgroup):