diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2023-04-23 15:29:56 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2023-04-24 09:41:40 +0200 |
commit | 732ca611a00068c5c77c1774ec893a2abccd6c1e (patch) | |
tree | 59cf8774b24e2cace573625385e8082caee51ad5 /sc/res | |
parent | 95aa39749b4dcc9cf06350dcb8c9a96373de5999 (diff) |
Missing CJK and CTL attributes in default cell styles
Presumably after 516bc904e94971b61e4b13af632bf321b0a4a640
("Upgrade mdds and orcus to 2.1.0 and 0.18.0, respectively").
It appears that we used to set them from the latin attributes
specified in styles.xml, which isn't correct. So let's just
add them explicitly.
Change-Id: I3300f73b0376275147f89d2db0ac3ef4bf2da5a7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150892
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sc/res')
-rw-r--r-- | sc/res/xml/styles.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/res/xml/styles.xml b/sc/res/xml/styles.xml index d1d1a750e241..37cfc36afae1 100644 --- a/sc/res/xml/styles.xml +++ b/sc/res/xml/styles.xml @@ -1,13 +1,13 @@ <?xml version="1.0"?> <office:styles xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"> <style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/> + <style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Heading 1" style:family="table-cell" style:parent-style-name="Heading"> - <style:text-properties fo:font-size="18pt"/> + <style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/> </style:style> <style:style style:name="Heading 2" style:family="table-cell" style:parent-style-name="Heading"> - <style:text-properties fo:font-size="12pt"/> + <style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/> </style:style> <style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/> @@ -16,7 +16,7 @@ <style:text-properties fo:color="#333333"/> </style:style> <style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text"> - <style:text-properties fo:color="#808080" fo:font-style="italic"/> + <style:text-properties fo:color="#808080" fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/> </style:style> <style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text"> <style:text-properties fo:color="#0000ee" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/> @@ -40,11 +40,11 @@ </style:style> <style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status"> <style:table-cell-properties fo:background-color="#cc0000"/> - <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:font-weight="bold"/> + <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Accent 1" style:family="table-cell" style:parent-style-name="Accent"> <style:table-cell-properties fo:background-color="#000000"/> @@ -59,6 +59,6 @@ </style:style> <style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:font-weight="bold" fo:font-style="italic" style:text-underline-style="solid"/> + <style:text-properties fo:font-weight="bold" fo:font-style="italic" style:font-weight-asian="bold" style:font-style-asian="italic" style:font-weight-complex="bold" style:font-style-complex="italic" style:text-underline-style="solid"/> </style:style> </office:styles> |