diff --git a/CHANGES b/CHANGES index 1ae85e6fb..6e5846149 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,6 @@ CHANGES IN FLTK 1.1.8 + - Documented tooltip inheritance (STR #1467) - Better event mouse handling fixing detached menus and sticky tooltips (STR #1463, STR #449) - Documentation fixes (STR #1454, STR #1455, STR #1456, diff --git a/documentation/Fl_Widget.html b/documentation/Fl_Widget.html index dfc26277f..be07ae2f9 100644 --- a/documentation/Fl_Widget.html +++ b/documentation/Fl_Widget.html @@ -470,6 +470,11 @@ window when the user hovers the mouse over the widget. The string is not copied, so make sure any formatted string is stored in a static, global, or allocated buffer. +
If no tooltip is set, the tooltip of the parent is inherited. +Setting a tooltip for a group and setting no tooltip for a child +will show the group's tooltip instead. To avoid this behavior, +you can set the child's tooltip to an empty string +("").