From 17703bd7aa6a73f248f9067800e0c5a5ecfa5951 Mon Sep 17 00:00:00 2001 From: Malcolm Gin Date: Thu, 22 Aug 2019 14:29:46 -0700 Subject: [PATCH] Fix lineSpacing for slides Current setting at value "10" means make line spacing 10% of normal and squishes all the lines together on the body of the generated slide. value of "100.0" is normal. I think single line spacing. Looks better and is more readable on generated slides. --- finish/slides.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/finish/slides.js b/finish/slides.js index 6ab40ab..8c15f4e 100644 --- a/finish/slides.js +++ b/finish/slides.js @@ -76,7 +76,7 @@ function createSlideJSON(licenseData, index) { objectId: `${ID_TITLE_SLIDE_BODY}_${index}`, fields: '*', style: { - lineSpacing: 10, + lineSpacing: 100.0, spaceAbove: {magnitude: 0, unit: 'PT'}, spaceBelow: {magnitude: 0, unit: 'PT'}, }