Skip to content

Commit

Permalink
STR 1161: Setting a new value in Fl_Input_ wil now actually move curs…
Browse files Browse the repository at this point in the history
…or to the end of the input field as documented

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5034 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Matthias Melcher committed Apr 27, 2006
1 parent b72e1d6 commit 8ffe967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES
@@ -1,5 +1,8 @@
CHANGES IN FLTK 1.1.8

- Setting a new value in Fl_Input_ wil now actually move
cursor to the end of the input field as documented
(STR #1161)
- FLUID crashed on WIN32 with international characters
(STR #1176)
- Fl_Check_Browser did not allow the user to toggle the
Expand Down
2 changes: 1 addition & 1 deletion src/Fl_Input_.cxx
Expand Up @@ -868,7 +868,7 @@ int Fl_Input_::static_value(const char* str, int len) {
xscroll_ = yscroll_ = 0;
minimal_update(0);
}
position(0, readonly() ? 0 : size());
position(readonly() ? 0 : size());
return 1;
}

Expand Down

0 comments on commit 8ffe967

Please sign in to comment.