Skip to content

Commit b2cc10a

Browse files
authored
model: Fix initial value of LinePadding style (#405)
1 parent 1a19f33 commit b2cc10a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/python/ttconv/style_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ class LinePadding(StyleProperty):
616616

617617
@staticmethod
618618
def make_initial_value():
619-
return LengthType(value=1, units=LengthType.Units.c)
619+
return LengthType(value=0, units=LengthType.Units.c)
620620

621621
@staticmethod
622622
def validate(value: LengthType):

0 commit comments

Comments
 (0)