From 3cd0de871cd320516ebc1aaf24b6a727e39c0300 Mon Sep 17 00:00:00 2001 From: Benjamin Klaus Date: Fri, 10 Jan 2025 11:45:02 +0100 Subject: [PATCH] #451 #168 set default values to match current appearance of main version --- src/js/model/TextConfig.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/model/TextConfig.js b/src/js/model/TextConfig.js index d409f568b..bafd9b78a 100644 --- a/src/js/model/TextConfig.js +++ b/src/js/model/TextConfig.js @@ -35,11 +35,11 @@ TextConfig.defaults({ modelVersion: constants.MODEL_VERSION, convertMode: null, fontFamily: "Arial", - fontSizePct: 15, + fontSizePct: 12, lineHeight: 1.5, - maxLines: 1, - textPosition: TextConfig.TEXT_POS_ABOVE, - onlyTextFontSizePct: 15, + maxLines: 2, + textPosition: TextConfig.TEXT_POS_BELOW, + onlyTextFontSizePct: 12, onlyTextLineHeight: 1 });