fix shelf list disable setting in shelf config dialog

SVN revision: 75203
This commit is contained in:
Mike Blumenkrantz 2012-08-13 10:13:13 +00:00
parent e9cb0d2085
commit c21e0ca906
1 changed files with 2 additions and 2 deletions

View File

@ -358,12 +358,12 @@ _ilist_fill(E_Config_Dialog_Data *cfdata)
if (n > -1) if (n > -1)
{ {
_widgets_disable(cfdata, 0, EINA_TRUE); _widgets_disable(cfdata, 0, EINA_FALSE);
e_widget_ilist_selected_set(cfdata->o_list, n); e_widget_ilist_selected_set(cfdata->o_list, n);
} }
else else
{ {
_widgets_disable(cfdata, 1, EINA_TRUE); _widgets_disable(cfdata, 1, EINA_FALSE);
e_widget_disabled_set(cfdata->o_add, 0); e_widget_disabled_set(cfdata->o_add, 0);
} }
} }