diff options
author | Carsten Haitzler <raster@rasterman.com> | 2005-10-12 16:02:33 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2005-10-12 16:02:33 +0000 |
commit | 03651d0fcbea90dbf054a745e7a3fc315d547b09 (patch) | |
tree | d600caa2065dc231fe4acc10710b39e89719a8d7 /src/bin/e_widget_list.c | |
parent | 248f977318b83a7b7cd2c715c464a077478d7cd7 (diff) | |
download | enlightenment-03651d0fcbea90dbf054a745e7a3fc315d547b09.tar.gz |
and now all the internal widgets understand keyboard focus and control.
dialog now uses internal widgets for buttons.
SVN revision: 17464
Diffstat (limited to 'src/bin/e_widget_list.c')
-rw-r--r-- | src/bin/e_widget_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/e_widget_list.c b/src/bin/e_widget_list.c index e2d8627504..0b815779bd 100644 --- a/src/bin/e_widget_list.c +++ b/src/bin/e_widget_list.c @@ -15,7 +15,7 @@ static void _e_wid_del_hook(Evas_Object *obj); /* externally accessible functions */ Evas_Object * -e_widget_list_add(Evas *evas, int horiz) +e_widget_list_add(Evas *evas, int homogenous, int horiz) { Evas_Object *obj, *o; E_Widget_Data *wd; @@ -29,7 +29,7 @@ e_widget_list_add(Evas *evas, int horiz) o = e_box_add(evas); wd->o_box = o; e_box_orientation_set(o, horiz); - e_box_homogenous_set(o, 0); + e_box_homogenous_set(o, homogenous); evas_object_show(o); e_widget_sub_object_add(obj, o); e_widget_resize_object_set(obj, o); |