entry: Fix a test case for editable, non-editable entry.

Summary:
elm_entry_context_menu_disabled_set API is called to wrong entry.
It should be called to "en2" that added for testing the API.
@fix

Test Plan: 1. elementary -to entry7

Reviewers: woohyun, seoz, tasn

Reviewed By: seoz

CC: herdsman

Differential Revision: https://phab.enlightenment.org/D852
This commit is contained in:
Youngbok Shin 2014-05-13 15:50:05 +09:00 committed by Daniel Juyung Seo
parent 52dacc461f
commit be3e33171f
1 changed files with 1 additions and 1 deletions

View File

@ -2190,7 +2190,7 @@ test_entry7(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_in
"<item size=50x50 vsize=full href=itemprovider></item>"
);
elm_entry_item_provider_append(en2, item_provider, NULL);
elm_entry_context_menu_disabled_set(en, EINA_TRUE);
elm_entry_context_menu_disabled_set(en2, EINA_TRUE);
elm_grid_pack(gd, en2, 10, 50, 45, 30);
evas_object_show(en2);