diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-12 11:12:56 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-12 11:12:56 +0000 |
| commit | a35c5a6a2e74b9c9aa87f71b699a4b86cda0b857 (patch) | |
| tree | e7f21096ddc5fbc163b21f72b99cc75069fed401 /src/Fl_Adjuster.cxx | |
| parent | a34e8e40f681c511ea07e2fa38b5675e3f63f9ad (diff) | |
Fix tooltips on some of the valuators...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2209 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Adjuster.cxx')
| -rw-r--r-- | src/Fl_Adjuster.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Fl_Adjuster.cxx b/src/Fl_Adjuster.cxx index 421635739..cdccaf11a 100644 --- a/src/Fl_Adjuster.cxx +++ b/src/Fl_Adjuster.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:29 easysw Exp $" +// "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.6 2002/05/12 11:12:56 easysw Exp $" // // Adjuster widget for the Fast Light Tool Kit (FLTK). // @@ -146,6 +146,10 @@ int Fl_Adjuster::handle(int event) { redraw(); return 1; } else return 0; + + case FL_ENTER : + case FL_LEAVE : + return 1; } return 0; } @@ -160,5 +164,5 @@ Fl_Adjuster::Fl_Adjuster(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:29 easysw Exp $". +// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.6 2002/05/12 11:12:56 easysw Exp $". // |
