elm_entry : Fix ctxpopup can't be called again in the mobile mode entry.

This commit is contained in:
Youngbok Shin 2013-05-14 14:06:21 +01:00 committed by Tom Hacohen
parent 441a95662d
commit a68f086008
3 changed files with 6 additions and 1 deletions

View File

@ -1344,3 +1344,7 @@
2013-05-09 Seunggyun Kim
* Fix remained ecore timer issue when gesture layer was deleted.
2013-05-14 Youngbok Shin
* Fix ctxpopup can't be called again in the mobile mode entry.

View File

@ -228,6 +228,7 @@ Fixes:
* Fix do not append NULL to genlist focus list.
* Fix elm_clock_first_interval_set writes wrong value.
* Fix remained ecore timer issue when gesture layer was deleted.
* Fix ctxpopup can't be called again in the mobile mode entry.
Removals:

View File

@ -1254,7 +1254,7 @@ _menu_call(Evas_Object *obj)
{
/* prevent stupid blank hoversel */
if (sd->have_selection && sd->password) return;
if (sd->sel_mode || (_elm_config->desktop_entry && ((!sd->editable) || (!ownersel)))) return;
if (_elm_config->desktop_entry && ((!sd->editable) || (!ownersel))) return;
}
if (sd->hoversel) evas_object_del(sd->hoversel);
else elm_widget_scroll_freeze_push(obj);