fix bug where configuring shelf contents from the shelves config dialog was disallowed when a shelf settings dialog was open

SVN revision: 76935
This commit is contained in:
Mike Blumenkrantz 2012-09-21 07:42:12 +00:00
parent 8d97adf900
commit a33ab2cf3e
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ _cb_contents(void *data, void *data2 __UNUSED__)
if (!(cfdata = data)) return;
es = e_widget_ilist_selected_data_get(cfdata->o_list);
if (!es) return;
if (!es->config_dialog)
if (!es->gadcon->config_dialog)
{
e_int_gadcon_config_shelf(es->gadcon);
e_object_del_attach_func_set(E_OBJECT(es->gadcon->config_dialog), _cb_contents_end);