diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-24 16:00:11 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-24 16:00:11 +0000 |
| commit | 18ad096722e7ce1d38ed7f956fe11a86c9a0dee5 (patch) | |
| tree | dfbd127b3e7f2bc4c1070dc3d17a5d65aa226427 /src/Fl_Tooltip.cxx | |
| parent | 44a7ad2c489bc6e9e65b82c8776cc136472fd588 (diff) | |
Now look for 8 bits of alpha when the developer has requested
FL_RGB8 (STR #541)
The last line in an Fl_Help_View widget was not aligned properly
(STR #536)
The "search" symbol looked like a Q (STR #536)
Changed Fl_Help_View::get_color() to use a lookup table to avoid
serious Borland C++ 5.5 compiler bugs (STR #533)
Fixed Watcom compiler warnings with FL/Fl_Widget.H (STR #540)
The image class copy() methods did not always make a separate
copy of the image data (STR #539)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3844 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Tooltip.cxx')
| -rw-r--r-- | src/Fl_Tooltip.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx index 352b2c26f..eaf197ad9 100644 --- a/src/Fl_Tooltip.cxx +++ b/src/Fl_Tooltip.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.cxx,v 1.38.2.30 2004/09/12 20:26:23 easysw Exp $" +// "$Id: Fl_Tooltip.cxx,v 1.38.2.31 2004/09/24 16:00:11 easysw Exp $" // // Tooltip source file for the Fast Light Tool Kit (FLTK). // @@ -186,7 +186,7 @@ Fl_Tooltip::exit_(Fl_Widget *w) { printf(" widget=%p, window=%p\n", widget_, window); #endif // DEBUG - if (!widget_) return; + if (!widget_ || w == window) return; widget_ = 0; Fl::remove_timeout(tooltip_timeout); Fl::remove_timeout(recent_timeout); @@ -254,5 +254,5 @@ void Fl_Widget::tooltip(const char *tt) { } // -// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.30 2004/09/12 20:26:23 easysw Exp $". +// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.31 2004/09/24 16:00:11 easysw Exp $". // |
