diff options
author | Dariusz Frankiewicz <d.frankiewic@samsung.com> | 2016-07-11 19:25:33 +0200 |
---|---|---|
committer | Dariusz Frankiewicz <d.frankiewic@samsung.com> | 2016-07-11 19:25:33 +0200 |
commit | b6d2ad36191e6d5f58db5a4757db518b461c63aa (patch) | |
tree | f82dff6a6a3d6ca4be484c46f625c4920cdba160 | |
parent | a323a798422af6935d079c0ec5f37861b9f59ce3 (diff) | |
download | browser-b6d2ad36191e6d5f58db5a4757db518b461c63aa.tar.gz browser-b6d2ad36191e6d5f58db5a4757db518b461c63aa.tar.bz2 browser-b6d2ad36191e6d5f58db5a4757db518b461c63aa.zip |
[Workaround] Fix for not working bottom area scroll.
[Problem] elm_entry_select_all is not working correctly.
[Solution] Disable usage.
Change-Id: I950094591c3b97ba66d2b905c07578f55d1b8f54
-rw-r--r-- | services/WebPageUI/URIEntry.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/services/WebPageUI/URIEntry.cpp b/services/WebPageUI/URIEntry.cpp index 1c857529..11d9f49e 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*/) |