Fixed right text selection handle is not moved after left text selection handle is...
authorYuni Jeong <yhnet.jung@samsung.com>
Mon, 6 May 2013 13:51:47 +0000 (22:51 +0900)
committerGerrit Code Review <gerrit2@kim11>
Tue, 7 May 2013 08:15:22 +0000 (17:15 +0900)
commit0535330307758e1886075ae0794e71352979628f
tree32397c35f1fdd149c45cd89473221dfcaa90e049
parentf93ae04bd4eb7156be579d326a9df7163ae1e107
Fixed right text selection handle is not moved after left text selection handle is selected.

[Title] Fixed right text selection handle is not moved after left text selection handle is selected.
[Issue#] N_SE_37401
[Problem] Right text selection handle is not moved after left text selection handle is selected.
[Cause] Left text selection handle was selected and then,
        when right text selection handle is selected,
        isMouseDowned() value of both left and right handles is true.
        So, selected handle is alwyas left text selection handle due to below code.
          - "TextSelectionHandle* selectionHandle = m_leftHandle->isMouseDowned()? m_leftHandle : m_rightHandle;"
[Solution] Added m_selectedHandle variable and changed routine to get selected handle.

Change-Id: I5b6cbd38ff14de8a2747112622be9d2196f11eb5
Source/WebKit2/UIProcess/API/efl/tizen/TextSelection.cpp
Source/WebKit2/UIProcess/API/efl/tizen/TextSelection.h