summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-10-04 02:30:34 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-10-04 02:30:34 +0000
commit561052191096d72b321f676401fbc8c7476a5990 (patch)
tree17667b261c1fc9f96c0f96dd4573cf4c0a728049 /src
parent14f432133081273396d48e4322115d6fc1860727 (diff)
Doco updates.
Reset cursor when changing the current pane in an Fl_Wizard widget. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2648 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Wizard.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Fl_Wizard.cxx b/src/Fl_Wizard.cxx
index 69afb6f80..1f14f25a5 100644
--- a/src/Fl_Wizard.cxx
+++ b/src/Fl_Wizard.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Wizard.cxx,v 1.1.2.2 2002/01/01 15:11:31 easysw Exp $"
+// "$Id: Fl_Wizard.cxx,v 1.1.2.3 2002/10/04 02:30:34 easysw Exp $"
//
// Fl_Wizard widget routines.
//
@@ -194,9 +194,14 @@ Fl_Wizard::value(Fl_Widget *kid)
else
(*kids)->hide();
}
+
+ // This will restore the mouse pointer to the window's default cursor
+ // whenever the wizard pane is changed. Otherwise text widgets that
+ // show the next pane may leave the cursor set to the I beam, etc...
+ window()->cursor(FL_CURSOR_DEFAULT);
}
//
-// End of "$Id: Fl_Wizard.cxx,v 1.1.2.2 2002/01/01 15:11:31 easysw Exp $".
+// End of "$Id: Fl_Wizard.cxx,v 1.1.2.3 2002/10/04 02:30:34 easysw Exp $".
//