elementary/elm_widget.c : Delete meaningless conditional state
authorwoohyun <woohyun@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 1 Jul 2011 09:07:36 +0000 (09:07 +0000)
committerwoohyun <woohyun@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 1 Jul 2011 09:07:36 +0000 (09:07 +0000)
(already been checked by the above code)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@60911 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_widget.c

index e1819ec..6f3eb63 100644 (file)
@@ -1816,8 +1816,7 @@ elm_widget_disabled_set(Evas_Object *obj,
              if (!o) break;
              parent = o;
           }
-        if (elm_widget_focus_get(obj))
-          elm_widget_focus_cycle(parent, ELM_FOCUS_NEXT);
+               elm_widget_focus_cycle(parent, ELM_FOCUS_NEXT);
      }
    if (sd->disable_func) sd->disable_func(obj);
 }