elementary/elm_widget : focus_region function in elm_scroller was not
authorWooHyun Jung <woohyun0705@gmail.com>
Wed, 25 Jul 2012 02:43:32 +0000 (02:43 +0000)
committerWooHyun Jung <woohyun0705@gmail.com>
Wed, 25 Jul 2012 02:43:32 +0000 (02:43 +0000)
executed because of _elm_legacy_is always returned EINA_FALSE. So I removed
it.

SVN revision: 74367

src/lib/elm_widget.c

index 1d14181..2f257ad 100644 (file)
@@ -889,7 +889,7 @@ _elm_widget_focus_region_show(const Evas_Object *obj)
      {
         Evas_Coord px, py;
         sd2 = evas_object_smart_data_get(o);
-        if (_elm_legacy_is(o) && sd2->focus_region)
+        if (sd2->focus_region)
           {
              sd2->focus_region(o, x, y, w, h);
              elm_widget_focus_region_get(o, &x, &y, &w, &h);