DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2770
Version: 1.3-current


For the "International" menu issue:
I believe the solution would be to change line 357 of src/Fl_Menu.cxx
from
if (X < scr_x) X = scr_x; if (X > scr_x+scr_w-W) X = right_edge-W; //X=
scr_x+scr_w-W;

to

if (X < scr_x) X = scr_x; if (X > scr_x+scr_w-W) X = scr_x+scr_w-W;

Thus amounts to undo a change done by Matt at r.6490
and for which the commit text gives no clue.

@Matt: any opinion about why this change was done in the first place?


Link: http://www.fltk.org/str.php?L2770
Version: 1.3-current

_______________________________________________
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to