PDF: Duplicar espacio entre familias de categorías
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m13s

This commit is contained in:
2025-11-24 18:00:43 -06:00
parent 9fc1842791
commit 63da716ab1

View File

@@ -242,7 +242,7 @@ function renderizarCategoriasHorizontal(
): void { ): void {
const checkboxSize = 2.5 // Checkbox más pequeño const checkboxSize = 2.5 // Checkbox más pequeño
const rowHeight = 3.8 // Altura de fila const rowHeight = 3.8 // Altura de fila
const parentSpacing = 2 // Espacio después de cada grupo padre+hijos const familySpacing = 4 // Espacio entre familias (grupos padre+hijos)
const childIndent = 3 // Indentación para hijos en wrap const childIndent = 3 // Indentación para hijos en wrap
let currentX = x let currentX = x
@@ -287,8 +287,8 @@ function renderizarCategoriasHorizontal(
}) })
} }
// Añadir espacio después del grupo // Añadir espacio entre familias
currentX += parentSpacing currentX += familySpacing
}) })
} }