summaryrefslogtreecommitdiff
path: root/src/intlGUIEditBox.cpp
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-05-19 07:57:21 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-05-19 07:57:21 +0200
commita4a377ecad6f1732cc54e7ac329fdef9949f9bf7 (patch)
tree05b628db3b92860d2b627421ce51e9f53452d640 /src/intlGUIEditBox.cpp
parent75c393c915ce7fa0e6529999f77c86f3a5897106 (diff)
downloadminetest-a4a377ecad6f1732cc54e7ac329fdef9949f9bf7.tar.gz
minetest-a4a377ecad6f1732cc54e7ac329fdef9949f9bf7.tar.bz2
minetest-a4a377ecad6f1732cc54e7ac329fdef9949f9bf7.zip
Fix textarea bug: clicking right of the end of a line caused the cursor to be in one of the next lines (#3474)
Diffstat (limited to 'src/intlGUIEditBox.cpp')
-rw-r--r--src/intlGUIEditBox.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intlGUIEditBox.cpp b/src/intlGUIEditBox.cpp
index 29f828076..4cc2d746f 100644
--- a/src/intlGUIEditBox.cpp
+++ b/src/intlGUIEditBox.cpp
@@ -1120,6 +1120,8 @@ s32 intlGUIEditBox::getCursorPos(s32 x, s32 y)
if (x < CurrentTextRect.UpperLeftCorner.X)
x = CurrentTextRect.UpperLeftCorner.X;
+ else if (x > CurrentTextRect.LowerRightCorner.X)
+ x = CurrentTextRect.LowerRightCorner.X;
s32 idx = font->getCharacterFromPos(Text.c_str(), x - CurrentTextRect.UpperLeftCorner.X);
@@ -1127,7 +1129,7 @@ s32 intlGUIEditBox::getCursorPos(s32 x, s32 y)
if (idx != -1)
return idx + startPos;
- // click was off the right edge of the line, go to end.
+ // click was off the right edge of the last line, go to end.
return txtLine->size() + startPos;
}