[Workaround] Fix for not working bottom area scroll. 48/79548/1
authorDariusz Frankiewicz <d.frankiewic@samsung.com>
Mon, 11 Jul 2016 17:25:33 +0000 (19:25 +0200)
committerDariusz Frankiewicz <d.frankiewic@samsung.com>
Mon, 11 Jul 2016 17:25:33 +0000 (19:25 +0200)
[Problem] elm_entry_select_all is not working correctly.
[Solution] Disable usage.

Change-Id: I950094591c3b97ba66d2b905c07578f55d1b8f54

services/WebPageUI/URIEntry.cpp

index 1c8575294a1bd11ce9a3cd9b5a22cfe46bfeaddb..11d9f49e267049f1b8b552c0942851f0293912d4 100644 (file)
@@ -261,7 +261,7 @@ void URIEntry::focused(void* data, Evas_Object* /* obj */, void* /* event_info *
         self->m_entryContextMenuOpen = false;
     }
     if(self->m_first_click) {
-        elm_entry_select_all(self->m_entry);
+//        elm_entry_select_all(self->m_entry);
         self->m_first_click = false;
         self->m_entrySelectionState = SelectionState::SELECTION_NONE;
     }
@@ -372,11 +372,11 @@ void URIEntry::setDisabled(bool disabled)
     elm_object_disabled_set(getContent(), disabled ? EINA_TRUE : EINA_FALSE);
 }
 
-void URIEntry::_uri_entry_double_clicked(void* data, Evas_Object* /*obj*/, void* /*event_info*/)
+void URIEntry::_uri_entry_double_clicked(void* /*data*/, Evas_Object* /*obj*/, void* /*event_info*/)
 {
     BROWSER_LOGD("[%s:%d] ", __PRETTY_FUNCTION__, __LINE__);
-    URIEntry* self = static_cast<URIEntry*>(data);
-    elm_entry_select_all(self->m_entry);
+//    URIEntry* self = static_cast<URIEntry*>(data);
+//    elm_entry_select_all(self->m_entry);
 }
 
 void URIEntry::_uri_entry_selection_changed(void* data, Evas_Object* /*obj*/, void* /*event_info*/)