https://issues.apache.org/ooo/show_bug.cgi?id=124686
--- Comment #11 from Armin Le Grand <[email protected]> --- Still found an error; the fallback EPS preview creation adds the author/creator/etc fields from the EPS file, but these are no longer shown in the graphic object. This is because the metafile to primitive decomposition for the META_TEXTRECT_ACTION is a little tricky. It needs to reuse the Font set so far for the subcontent. Also stumbled about vcl creating a default font with the empty constructor Font::Font() that uses a local static instance of Impl_Font called aStaticImplFont. Impl_Font::Impl_Font() itself sets no size for the Size-type member, thus the empty constructed default font has no size at all (and thus no height). This was used before I reused the font (see above) and is not a useful default. I changed the Impl_Font::Impl_Font() to init the FontSize to Size(0, 16) as default. Preparing commit... -- You are receiving this mail because: You are the assignee for the issue. You are watching all issue changes.
