Juergen Spitzmueller wrote:
> BTW: I found some problems with the External dialog.
> 1. Scaling did not work with xfig images, because
> \scalebox{<horizontal>}{<verical>}{<content>}
> was used instead of the correct
> \scalebox{<horizontal>}[<verical>]{<content>}
> (2. arg is optional). This one gets fixed by the patch.
Did you check wether this is for an old version of the scalebox command? I
can't imagine that this was broken.
> 2. Raster images do not get converted -> LaTeX error (Including a png
> image via the External dialog also fails in 1.3)
> No idea how to fix this.
I don't understand. Do you mean that if the conversion fails you get a latex
error, or do you mean that the conversion fails always?
Why did you change insetexternal? I am not sure if things like
> bool ResizeData::usingScale() const
> {
> - return !float_equal(scale, 0.0, 0.05);
> + return (!scale.empty() && scale != "0");
> }
work.
> + float rotAngle = strToDbl(angle);
Why not double?
Georg