elm widget: remove meaningless brackets

This commit is contained in:
WooHyun Jung 2016-08-31 09:36:52 +09:00
parent 9e54ae9373
commit 9452acd126
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ _obj_mouse_down(void *data,
ELM_WIDGET_DATA_GET(data, sd);
Evas_Event_Mouse_Down *ev = event_info;
if ((ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)) return;
if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
top = elm_widget_top_get(data);
if (top && efl_isa(top, EFL_UI_WIN_CLASS)) _elm_win_focus_auto_hide(top);