Browse Source

Fixed: the thickness of text decorations was significantly higher than defined by the font settings.

Marcin Ziąbek 1 year ago
parent
commit
2bd348cc6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/QuestPDF/Infrastructure/TextStyle.cs

+ 1 - 1
Source/QuestPDF/Infrastructure/TextStyle.cs

@@ -54,7 +54,7 @@ namespace QuestPDF.Infrastructure
             HasUnderline = false,
             HasOverline = false,
             DecorationStyle = TextStyleConfiguration.TextDecorationStyle.Solid,
-            DecorationThickness = 2f,
+            DecorationThickness = 1f,
             Direction = TextDirection.Auto
         };