diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-17 01:16:48 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-17 01:16:48 +0000 |
| commit | 073701ce96b9abddd21078a61fbfc4f7668bad5d (patch) | |
| tree | 73d307f4b901e896bd0201ebb08de0e8637366b7 /src/Fl.cxx | |
| parent | 12e9d23bc39ed6edb88af89723449f39ff088fad (diff) | |
Hide tooltips when hiding a window.
Fix box borders for FL_PLASTIC_DOWN_BOX.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1858 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
| -rw-r--r-- | src/Fl.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index d803583ce..f2fe08a13 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl.cxx,v 1.24.2.41.2.11 2001/12/06 00:17:47 matthiaswm Exp $" +// "$Id: Fl.cxx,v 1.24.2.41.2.12 2001/12/17 01:16:48 easysw Exp $" // // Main event handling code for the Fast Light Tool Kit (FLTK). // @@ -650,6 +650,9 @@ void Fl_Window::hide() { if (!shown()) return; + // Hide any visible tooltips... + Fl_Tooltip::enter(0); + // remove from the list of windows: Fl_X* x = i; Fl_X** pp = &Fl_X::first; @@ -841,5 +844,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.41.2.11 2001/12/06 00:17:47 matthiaswm Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.41.2.12 2001/12/17 01:16:48 easysw Exp $". // |
