diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-24 12:20:36 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-24 12:20:36 +0000 |
| commit | a89ca324a4ba7817be73b71e41c4bb0819dfc3ad (patch) | |
| tree | bf0dcc0257295fcf99ed47e13cecb62668040fd7 /src | |
| parent | c90c981570c974935953cc3ee742a4d009c31301 (diff) | |
Fix a recursion bug in the tooltip code - didn't need to grab(), but
might need to add the set_override() method to the 1.1 window classes...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2104 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Tooltip.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx index 32b689333..607f10588 100644 --- a/src/Fl_Tooltip.cxx +++ b/src/Fl_Tooltip.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.cxx,v 1.38.2.13 2002/04/14 20:49:06 easysw Exp $" +// "$Id: Fl_Tooltip.cxx,v 1.38.2.14 2002/04/24 12:20:36 easysw Exp $" // // Tooltip source file for the Fast Light Tool Kit (FLTK). // @@ -212,9 +212,7 @@ Fl_Tooltip::tooltip_timeout(void *v) { if (widgetWindow) { // puts("Showing tooltip"); - Fl::grab(*widgetWindow); window->show(); - Fl::release(); shown = 1; } else { widget = 0; @@ -223,5 +221,5 @@ Fl_Tooltip::tooltip_timeout(void *v) { // -// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.13 2002/04/14 20:49:06 easysw Exp $". +// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.14 2002/04/24 12:20:36 easysw Exp $". // |
