Fix exact Krea2 POV oral routing

This commit is contained in:
2026-06-30 20:35:00 +02:00
parent 5f4dd7d77f
commit 3832044256
8 changed files with 182 additions and 12 deletions
+5 -6
View File
@@ -2363,6 +2363,10 @@ def _build_custom_row(
item_text = category_route.item_text
item_name = category_route.item_name
item_axis_values = dict(category_route.item_axis_values)
item_axis_values = _axis_values_with_krea2_variant_keys(
item_axis_values,
parsed_hardcore_position_config,
)
item_template_metadata = dict(category_route.item_template_metadata)
item_formatter_hints = dict(category_route.formatter_hints)
is_pose_category = category_route.is_pose_category
@@ -2471,11 +2475,6 @@ def _build_custom_row(
action_family = action_route.action_family
text_fields = _row_text_fields(category, subcategory, item, style_config)
formatter_axis_values = _axis_values_with_krea2_variant_keys(
item_axis_values,
parsed_hardcore_position_config,
)
assembly_request = row_assembly_policy.CustomRowAssemblyRequest(
row_number=row_number,
start_index=start_index,
@@ -2486,7 +2485,7 @@ def _build_custom_row(
subject_type=subject_type,
item_text=item_text,
item_name=item_name,
item_axis_values=formatter_axis_values,
item_axis_values=item_axis_values,
item_template_metadata=item_template_metadata,
formatter_hints=item_formatter_hints,
item_label=text_fields.item_label,