e_int_config_profiles: Add NULL parent param to e_entry_dialog_show call

This commit is contained in:
Christopher Michael 2021-01-20 12:37:18 -05:00
parent c8c9d0751f
commit b177afeb43
1 changed files with 5 additions and 4 deletions

View File

@ -313,10 +313,11 @@ _cb_add(void *data, void *data2 EINA_UNUSED)
elm_win_raise(cfdata->dia_new_profile->dia->win);
else
{
cfdata->dia_new_profile = e_entry_dialog_show(_("Add New Profile"), NULL,
_("Name:"), NULL, NULL, NULL,
_new_profile_cb_ok,
NULL, cfdata);
cfdata->dia_new_profile =
e_entry_dialog_show(NULL, _("Add New Profile"), NULL,
_("Name:"), NULL, NULL, NULL,
_new_profile_cb_ok,
NULL, cfdata);
e_object_data_set(E_OBJECT(cfdata->dia_new_profile), cfdata);
e_object_del_attach_func_set(E_OBJECT(cfdata->dia_new_profile), _new_profile_cb_dia_del);
}