summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2000-06-06 18:42:08 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2000-06-06 18:42:08 +0000
commit7bf3c4e2eb2cf0236f1685da9483a9aa6f075b76 (patch)
tree294e60b117bcb75e0462cc9d46b3658432a1ac2f /src
parentf4fff52828dd43677b2795c1b0c1d4ee52c0e527 (diff)
Fixed bug where Fl_Output and Fl_Multiline_Output would scroll to the
end of the value() text. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1175 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Input_.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Input_.cxx b/src/Fl_Input_.cxx
index 01fb9a000..aadbe8924 100644
--- a/src/Fl_Input_.cxx
+++ b/src/Fl_Input_.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Input_.cxx,v 1.21.2.5 2000/06/05 21:20:52 mike Exp $"
+// "$Id: Fl_Input_.cxx,v 1.21.2.6 2000/06/06 18:42:08 mike Exp $"
//
// Common input widget routines for the Fast Light Tool Kit (FLTK).
//
@@ -714,7 +714,7 @@ int Fl_Input_::static_value(const char* str, int len) {
xscroll_ = yscroll_ = 0;
minimal_update(0);
}
- position(size(), 0);
+ position(0, 0);
return 1;
}
@@ -744,5 +744,5 @@ Fl_Input_::~Fl_Input_() {
}
//
-// End of "$Id: Fl_Input_.cxx,v 1.21.2.5 2000/06/05 21:20:52 mike Exp $".
+// End of "$Id: Fl_Input_.cxx,v 1.21.2.6 2000/06/06 18:42:08 mike Exp $".
//