Edje entry: always finish selection when mouse is up.

Even when the event is held. This actually needs some better fixing.
This commit is contained in:
Tom Hacohen 2014-02-07 13:43:06 +00:00
parent 0541d1ebe6
commit c061e76927
1 changed files with 3 additions and 5 deletions

View File

@ -2167,11 +2167,9 @@ _edje_part_mouse_up_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
(rp->part->entry_mode < EDJE_ENTRY_EDIT_MODE_SELECTABLE))
return;
if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
{
_edje_entry_imf_cursor_info_set(en);
return;
}
/* We don't check for ON_HOLD because we'd like to end selection anyway when
* mouse is up, even if it's held. */
#ifdef HAVE_ECORE_IMF
if (en->imf_context)