? build ? diagnostic ? diagnostic.diff ? pending Index: lib/forms.c =================================================================== RCS file: /cvsroot/xforms/xforms/lib/forms.c,v retrieving revision 1.14 diff -u -p -r1.14 forms.c --- lib/forms.c 6 Oct 2004 23:25:34 -0000 1.14 +++ lib/forms.c 6 Oct 2004 23:27:40 -0000 @@ -2028,6 +2028,14 @@ do_interaction_step(int wait_io) fl_get_winsize(evform->window, &neww, &newh); scale_form(evform, (double) neww / evform->w, (double) newh / evform->h); + } else { + FL_Coord neww, newh; + fl_get_winsize(evform->window, &neww, &newh); + + fprintf(stderr, "x %d, y %d, w %d, h %d, f.w %d, f.h %d\n", + st_xev.xexpose.x, st_xev.xexpose.y, + st_xev.xexpose.width, st_xev.xexpose.height, + neww, newh); } fl_handle_form(evform, FL_DRAW, 0, &st_xev);