Implementation in Edit to not consume right arrow Key Pressed events when cursor...
authorAyush <ayush.sriv@samsung.com>
Sat, 16 Mar 2013 06:57:11 +0000 (12:27 +0530)
committerAyush <ayush.sriv@samsung.com>
Sat, 16 Mar 2013 07:03:38 +0000 (12:33 +0530)
Change-Id: Ibeae3763c9f4c893065d86722fcd488804a93f64
Signed-off-by: Ayush <ayush.sriv@samsung.com>
src/ui/controls/FUiCtrl_EditPresenter.cpp

index 5d90f35..42b2ecd 100644 (file)
@@ -3564,6 +3564,11 @@ _EditPresenter::OnKeyPressed(const _Control& source, const _KeyInfo& keyInfo)
                        __composingTextLength = 0;
                }
 
+               if (__cursorPos == GetTextLength())
+               {
+                       return false;
+               }
+
                if (__cursorPos < GetTextLength())
                {
                        int startPosition = -1;