DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New]
Link: http://www.fltk.org/str.php?L2541
Version: 1.3-current
On linux (Ubuntu8.04+Gnome).
When a menu is posted over a window area that has tooltips, the tooltips
can fire while the menu is being navigated, obscuring the menu, and the
tooltip won't go away when the mouse passes over it.
Attached program shows the issue; open the Edit menu, then wait a few secs
and the tooltip will appear. Now navigate the menu; the tooltip stays above
the menu, and won't go away when the mouse passes over it.
This is a worse problem when the menu structure is deep, and the tooltip
is large, obscuring the menu for navigating.
Could not replicate on OSX, so this seems to be OS specific.
Link: http://www.fltk.org/str.php?L2541
Version: 1.3-current
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Menu_Bar.H>
int main(int argc, char **argv) {
Fl_Double_Window window(400,400);
Fl_Menu_Bar menubar(0,0,400,30);
menubar.add("File/New");
menubar.add("File/Open");
menubar.add("File/Save");
menubar.add("File/Save As");
menubar.add("File/Quit");
menubar.add("Edit/Undo");
menubar.add("Edit/Copy");
menubar.add("Edit/Paste");
menubar.add("Edit/Select All");
window.tooltip("This is a tooltip\nwith multiple lines");
window.end();
window.show(argc, argv);
return Fl::run();
}
_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs