Clear selection when back key is called from picker popup
authorTaeyun An <ty.an@samsung.com>
Fri, 19 Jul 2013 04:59:58 +0000 (13:59 +0900)
committerTaeyun An <ty.an@samsung.com>
Fri, 19 Jul 2013 04:59:58 +0000 (13:59 +0900)
[Title] Clear selection when back key is called from picker popup
[Issue#] N_SE-46926
[Problem] Text can be inserted in task date field after disappear popup when Host keyboard ON
[Cause] The selection is not cleared after disappear popup
[Solution] Clear selection when back key is called from picker popup

Change-Id: I3f6f93cf2420c1509185c77ed167c3ec02197b3c

Source/WebKit2/UIProcess/API/efl/tizen/InputPicker.cpp

index 06cbba2..7cd50f1 100755 (executable)
@@ -1295,6 +1295,8 @@ void InputPicker::_popup_back_cb(void* data,  Evas_Object* obj, void* event_info
 {
     InputPicker* inputPicker = static_cast<InputPicker*>(data);
 
+    ewk_view_command_execute(inputPicker->m_ewkView, "Unselect", 0);
+
     if (!inputPicker->m_pickerLayout)
         return;