summaryrefslogtreecommitdiff
path: root/src/Fl_Dial.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-05-12 11:12:56 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-05-12 11:12:56 +0000
commita35c5a6a2e74b9c9aa87f71b699a4b86cda0b857 (patch)
treee7f21096ddc5fbc163b21f72b99cc75069fed401 /src/Fl_Dial.cxx
parenta34e8e40f681c511ea07e2fa38b5675e3f63f9ad (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_Dial.cxx')
-rw-r--r--src/Fl_Dial.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Fl_Dial.cxx b/src/Fl_Dial.cxx
index 3a09af7a6..1a6363a5d 100644
--- a/src/Fl_Dial.cxx
+++ b/src/Fl_Dial.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Dial.cxx,v 1.12.2.3.2.2 2002/04/11 10:46:19 easysw Exp $"
+// "$Id: Fl_Dial.cxx,v 1.12.2.3.2.3 2002/05/12 11:12:56 easysw Exp $"
//
// Circular dial widget for the Fast Light Tool Kit (FLTK).
//
@@ -113,6 +113,9 @@ int Fl_Dial::handle(int event, int x, int y, int w, int h) {
case FL_RELEASE:
handle_release();
return 1;
+ case FL_ENTER :
+ case FL_LEAVE :
+ return 1;
default:
return 0;
}
@@ -131,5 +134,5 @@ Fl_Dial::Fl_Dial(int x, int y, int w, int h, const char* l)
}
//
-// End of "$Id: Fl_Dial.cxx,v 1.12.2.3.2.2 2002/04/11 10:46:19 easysw Exp $".
+// End of "$Id: Fl_Dial.cxx,v 1.12.2.3.2.3 2002/05/12 11:12:56 easysw Exp $".
//