elementary/elm_widget : Fix _newest_focus_order_get, it should not

return disabled object


SVN revision: 61033
This commit is contained in:
WooHyun Jung 2011-07-05 07:59:01 +00:00
parent 00775ed687
commit a36e9072b6
1 changed files with 4 additions and 1 deletions

View File

@ -2784,7 +2784,10 @@ _newest_focus_order_get(Evas_Object *obj,
Evas_Object *child, *ret, *best;
API_ENTRY return NULL;
if (!evas_object_visible_get(obj)) return NULL;
if ((!evas_object_visible_get(obj)) || (elm_widget_disabled_get(obj)))
return NULL;
best = NULL;
if (*newest_focus_order < sd->focus_order)
{