summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2012-12-24 04:06:46 +0000
committerManolo Gouy <Manolo>2012-12-24 04:06:46 +0000
commit3c72b20458c943f650ddc071577b9876461d6389 (patch)
tree1395954a8eec688ff2cb9c726d3630222c42340e
parentd7a5f3f04aa6184f674482ea0611be2ac8b2dcee (diff)
Handle special case for multiline input with 'old tab behavior' where tab is entered as a character:
didn't work when selection had been done with ctrl-A. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9773 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Fl_Input.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx
index 92fb64b05..094912ea1 100644
--- a/src/Fl_Input.cxx
+++ b/src/Fl_Input.cxx
@@ -617,7 +617,8 @@ int Fl_Input::handle(int event) {
&& !Fl::event_state(FL_SHIFT) // no shift?
&& !tab_nav() // with tab navigation disabled?
&& input_type() == FL_MULTILINE_INPUT // with a multiline input?
- && (mark()==0 && position()==size())) { // while entire field selected?
+ && size() > 0 // non-empty field?
+ && ((mark()==0 && position()==size()) || (position()==0 && mark()==size()))) {// while entire field selected?
// Set cursor to the end of the selection...
if (mark() > position())
position(mark());