FLEX-34403 - fix "Right arrow never works when text selected in TextInput" (credit: Neil Madsen)
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/80f3042d Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/80f3042d Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/80f3042d Branch: refs/heads/tables Commit: 80f3042db978557183109deb8231a6d84853d657 Parents: 553c899 Author: Erik de Bruin <[email protected]> Authored: Wed Oct 15 08:53:26 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Wed Oct 15 08:53:26 2014 +0200 ---------------------------------------------------------------------- textLayout/src/flashx/textLayout/utils/NavigationUtil.as | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/80f3042d/textLayout/src/flashx/textLayout/utils/NavigationUtil.as ---------------------------------------------------------------------- diff --git a/textLayout/src/flashx/textLayout/utils/NavigationUtil.as b/textLayout/src/flashx/textLayout/utils/NavigationUtil.as index 2ebb985..091ceda 100644 --- a/textLayout/src/flashx/textLayout/utils/NavigationUtil.as +++ b/textLayout/src/flashx/textLayout/utils/NavigationUtil.as @@ -1112,7 +1112,8 @@ package flashx.textLayout.utils if (range.absoluteEnd >= flowComposer.damageAbsoluteStart - 1) { clampToFit(range, flowComposer.damageAbsoluteStart - 1); - return true; + return false; + //return true; } if (flowComposer && flowComposer.numControllers) {
