https://bugs.documentfoundation.org/show_bug.cgi?id=128121

--- Comment #2 from Justin L <[email protected]> ---
The text is not in the blue box. It is just normal body text, but it has some
"text effects" applied - namely that "No Fill" is applied to the text.

<w:r>
  <w:rPr>
    <w14:textFill>
      <w14:noFill/>
    </w14:textFill>
  </w:rPr>
  <w:t>HOLA</w:t>
</w:r>

This could be emulated in WriterFilter's TextEffectHandler with:
sal_uInt8 TextEffectsHandler::GetTextFillSolidFillAlpha
...
    auto noFillit = aMap.find("noFill");
    if (noFillit != aMap.end())
        return 99;

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to