fix bug where canceling the add of a new shelf failed to re-enable the add new shelf button

SVN revision: 76783
This commit is contained in:
Mike Blumenkrantz 2012-09-18 07:35:36 +00:00
parent 3a5f825a98
commit 4fba696db9
1 changed files with 4 additions and 1 deletions

View File

@ -311,7 +311,10 @@ _new_shelf_cb_close(void *data)
if (e_widget_ilist_selected_get(cfdata->o_list) >= 0)
_widgets_disable(cfdata, 0, EINA_TRUE);
else
e_widget_disabled_set(cfdata->o_list, 0);
{
e_widget_disabled_set(cfdata->o_list, 0);
e_widget_disabled_set(cfdata->o_add, 0);
}
}
static void