<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body><span class="vcard"><a class="email" href="mailto:philipz85@hotmail.com" title="Yousuf Philips (jay) <philipz85@hotmail.com>"> <span class="fn">Yousuf Philips (jay)</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - FILEOPEN: DOCX - Numbering list style not displayed correctly as not pulling in paragraph run properties"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=77797">bug 77797</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>jluth@mail.com, mikekaganski@hotmail.com, rb.henschel@t-online.de
</td>
</tr>
<tr>
<td style="text-align:right;">Summary</td>
<td>FILEOPEN: docx number list numbers style not displayed
</td>
<td>FILEOPEN: DOCX - Numbering list style not displayed correctly as not pulling in paragraph run properties
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - FILEOPEN: DOCX - Numbering list style not displayed correctly as not pulling in paragraph run properties"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=77797#c13">Comment # 13</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - FILEOPEN: DOCX - Numbering list style not displayed correctly as not pulling in paragraph run properties"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=77797">bug 77797</a>
from <span class="vcard"><a class="email" href="mailto:philipz85@hotmail.com" title="Yousuf Philips (jay) <philipz85@hotmail.com>"> <span class="fn">Yousuf Philips (jay)</span></a>
</span></b>
<pre>(In reply to Owen Genat (retired) from <a href="show_bug.cgi?id=77797#c5">comment #5</a>)
<span class="quote">> <w:numPr>
> <w:ilvl w:val="0"/>
> <w:numId w:val="16"/>
> </w:numPr></span >
This is the numbering properties with a reference to numId=16 (available as
WWNum16 list style), which can be found in /word/numbering.xml like so
<w:num w:numId="16">
<w:abstractNumId w:val="20" />
</w:num>
This references the abstractNumId=20 (available as ListLabel 20 character
style), which also can be found numbering.xml like so
<w:abstractNum w:abstractNumId="20">
...
<w:lvl w:ilvl="0" w:tplc="0419000F">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="720" w:hanging="360" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
<w:b w:val="0" />
</w:rPr>
</w:lvl>
...
</w:abstractNum>
And the run properties from here are to overwrite the paragraph run properties
below
<span class="quote">> <w:rPr>
> <w:rFonts w:ascii="Segoe UI Light" w:eastAsia="Times New Roman"
> w:hAnsi="Segoe UI Light" w:cs="Times New Roman"/>
> <w:b/>
> <w:bCs/>
> <w:color w:val="68217A"/>
> <w:kern w:val="36"/>
> <w:sz w:val="36"/>
> <w:szCs w:val="20"/>
> <w:lang w:val="ru-RU"/>
> </w:rPr>
> </w:pPr></span >
resulting in a combined paragraph/numbering run properties of
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Segoe UI Light" .../>
<w:b w:val="0" />
<w:bCs/>
<w:color w:val="68217A"/>
<w:kern w:val="36"/>
<w:sz w:val="36"/>
<w:szCs w:val="20"/>
<w:lang w:val="ru-RU"/>
</w:rPr>
so the numbering should be not-bold and purple, but instead it currently is
bold and black.
@Justin, @Mike: What are your thoughts on this? Listlabel 20 is correctly
pulling in the latin font size (<w:sz>), but doesnt correctly pull in the font
color (<w:color>), no-bold (<w:b>) or the font name or size in asian and ctl.
@Regina: seems like not having direct formatting that can be applied to
different list items/characters means we'll be struggling with the likes of
this.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>