devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b177afeb436a5a75603b28564e1227ab5ae91b42
commit b177afeb436a5a75603b28564e1227ab5ae91b42 Author: Christopher Michael <devilho...@comcast.net> Date: Wed Jan 20 12:37:18 2021 -0500 e_int_config_profiles: Add NULL parent param to e_entry_dialog_show call --- src/modules/conf_dialogs/e_int_config_profiles.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/modules/conf_dialogs/e_int_config_profiles.c b/src/modules/conf_dialogs/e_int_config_profiles.c index 634601125..c894197d8 100644 --- a/src/modules/conf_dialogs/e_int_config_profiles.c +++ b/src/modules/conf_dialogs/e_int_config_profiles.c @@ -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); } --