From 63da716ab17e720da046c4ce3b219ce2526bf4ac Mon Sep 17 00:00:00 2001 From: josedario87 Date: Mon, 24 Nov 2025 18:00:43 -0600 Subject: [PATCH] =?UTF-8?q?PDF:=20Duplicar=20espacio=20entre=20familias=20?= =?UTF-8?q?de=20categor=C3=ADas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt4/app/utils/pdf/pdfFormulario.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }) }