entry: remove duplicated checking variable

'top' variable was checked twice, so it's fixed.
This commit is contained in:
Jihoon Kim 2014-01-14 08:07:22 +09:00
parent 6a8f33b298
commit bf0c4e921a
1 changed files with 1 additions and 1 deletions

View File

@ -1597,7 +1597,7 @@ _mouse_up_cb(void *data,
top = elm_widget_top_get(data);
if (top)
{
if (top && eo_isa(top, ELM_OBJ_WIN_CLASS))
if (eo_isa(top, ELM_OBJ_WIN_CLASS))
top_is_win = EINA_TRUE;
if (top_is_win && sd->input_panel_enable && sd->input_panel_show_on_demand &&