> Csaba Biegl wrote:
> > Simple test: create a window in Fluid, add a single image (PNG, JPEG, etc, 
> > does not matter which one), then drag an other window over the Fluid 
> > preview window. Enjoy the fireworks! fltk-1.3.x-r7626 under Windows does 
> > not have the problem. fltk-1.3.x-r7613 under X (Linux) does not have the 
> > problem.
>
>       Confirmed with the latest 1.3.x svn (7626) on Ubuntu 8.04 + gdm.
>
>       Looks like redraws aren't being triggered.
>
>       Although I can't replicate the same behavior with the test/image
>       program, something's wrong with that test program too; the image
>       comes up tinted yellow on my machine, whereas the older 1.3.x releases
>       did not.
>
>       I'll post this on fltk.development as well, in case it's
>       something simple added recently that doesn't need an STR
>       to be solved. I know that image related stuff has been
>       under development recently.

Here is the required change. So trivial that it does not even warrant a patch 
file. In src/Fl_Image.cxx, line 547 change:

static int start(Fl_RGB_Image *img, int XP, int YP, int WP, int HP, int w, int 
h, int cx, int cy,
                 int &X, int &Y, int &W, int &H)

to

static int start(Fl_RGB_Image *img, int XP, int YP, int WP, int HP, int w, int 
h, int &cx, int &cy,
                 int &X, int &Y, int &W, int &H)


_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to