diff --git a/nuxt4/app/utils/pdf/pdfFormulario.ts b/nuxt4/app/utils/pdf/pdfFormulario.ts index 3ec7f75..1c99410 100644 --- a/nuxt4/app/utils/pdf/pdfFormulario.ts +++ b/nuxt4/app/utils/pdf/pdfFormulario.ts @@ -242,7 +242,7 @@ function renderizarCategoriasHorizontal( ): void { const checkboxSize = 2.5 // Checkbox más pequeño 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 let currentX = x @@ -287,8 +287,8 @@ function renderizarCategoriasHorizontal( }) } - // Añadir espacio después del grupo - currentX += parentSpacing + // Añadir espacio entre familias + currentX += familySpacing }) }