it shouldn't be up to the theme to prevent disabled buttons from being selected.

SVN revision: 21201
This commit is contained in:
rephorm 2006-03-12 01:55:16 +00:00 committed by rephorm
parent e16298326e
commit 8a2a3230af
2 changed files with 5 additions and 1 deletions

View File

@ -90,6 +90,8 @@ static void
_e_wid_do(Evas_Object *obj)
{
E_Widget_Data *wd;
if (e_widget_disabled_get(obj)) return;
wd = e_widget_data_get(obj);
if (wd->valptr)

View File

@ -116,7 +116,9 @@ static void
_e_wid_do(Evas_Object *obj)
{
E_Widget_Data *wd;
if (e_widget_disabled_get(obj)) return;
wd = e_widget_data_get(obj);
if ((wd->group) && (wd->group->valptr))
{