summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHye Kyoung Hwang <cookie@samsung.com>2016-07-11 22:28:03 -0700
committerHye Kyoung Hwang <cookie@samsung.com>2016-07-11 22:28:07 -0700
commit8e002634882685cf92e998ce7e1ef2d8e481f90d (patch)
treec02adb2261fe90ff6b16f8972f424bbbaebb66fe
parent0063c3ee942a64c4927909d591a649046b7602b7 (diff)
downloadbrowser-8e002634882685cf92e998ce7e1ef2d8e481f90d.tar.gz
browser-8e002634882685cf92e998ce7e1ef2d8e481f90d.tar.bz2
browser-8e002634882685cf92e998ce7e1ef2d8e481f90d.zip
Platform fix the issue by https://review.tizen.org/gerrit/#/c/79485/
Revert "[Workaround] Fix for not working bottom area scroll." This reverts commit b6d2ad36191e6d5f58db5a4757db518b461c63aa. Change-Id: Ibc57d8ef01f12b893f4ad8b5147184ae4912dc83
-rw-r--r--services/WebPageUI/URIEntry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/WebPageUI/URIEntry.cpp b/services/WebPageUI/URIEntry.cpp
index 11d9f49e..1c857529 100644
--- a/services/WebPageUI/URIEntry.cpp
+++ b/services/WebPageUI/URIEntry.cpp
@@ -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*/)