Angus Leeming wrote:
>
> On Wednesday 10 July 2002 10:34 am, Jean-Marc Lasgouttes wrote:
> > >>>>> "Herbert" == Herbert Voss <[EMAIL PROTECTED]> writes:
> >
> > Herbert> Garst R. Reese wrote:
> > >> bash$ lyx --version LyX 1.2.1cvs of Thu, May 23, 2002 Built on Jun
> > >> 18 2002, 01:22:42 Updated about 1900h GMT Built about 5min ago.
> > >> Garst
> >
> > Herbert> ah, I see, we are talking about difefrent versions. try the
> > Herbert> attached patch.
> >
> > Shall I apply this fix to 1.2.1? Or shall it be conditionned on some xforms
> > version?
> >
> > JMarc
>
> This is what is in cvs:
> A
>
> unsigned int xformsImage::getWidth() const
> {
> if (!image_)
> return 0;
>
> #if FL_VERSION == 0 && FL_REVISION == 89 && FL_FIXLEVEL <= 6
> // Used to fix a bug in xforms <= 0.89.6 which
> // crops the image unnecessarily.
> return image_->w + 5;
> #else
> return image_->w;
> #endif
> }
That does not work for xforms-1.0rc4.
Does anyone have a problem with w + 5 ?
Is 0.89.6 the _only_ version that does not need w + 5 ?
Garst