On Mon, Aug 19, 2002 at 02:51:50PM +0900, Rob Lahaye wrote:
> 3) What is this strange setting of defaultUnit in FormGraphics:
>             if (lyxrc.default_papersize < 3) defaultUnit = "in";
>     (? what is this magic "3" ?).

This should be changed to 
    if (lyxrc.default_papersize <= BufferParams::PAPER_EXECUTIVEPAPER)
or
    if (lyxrc.default_papersize < BufferParams::PAPER_A3PAPER)

But shouldn't the default unit (for width) be line% or something similar ?

> 4) insetgraphics.C::InsetGraphics::readFigInset()
>     I commented out the keywords that do not exist anymore, but I
>     don't know if I have done the right thing here (and in general
>     in this file). Things seem to work here at my side, though.

readFigInset() can be erased.
figinset insets are converted by lyx2lyx to insetgraphics.



Reply via email to