Don't horizontal scroll in word wrap mode

This commit is contained in:
James Johnson 2018-01-11 11:36:38 -05:00
parent 7c500bd57a
commit ce39c13e31
1 changed files with 2 additions and 1 deletions

View File

@ -2771,7 +2771,8 @@ class EditBox : EditWidgetBase {
invalidate();
} else if (rc.left >= _clientRect.width - 10) {
// scroll right
_scrollPos.x += (rc.left - _clientRect.width) + _clientRect.width / 4;
if (!_wordWrap)
_scrollPos.x += (rc.left - _clientRect.width) + _clientRect.width / 4;
invalidate();
}
updateScrollBars();