devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ce4a7f5d8cb1dfbdecc73c62c5144019f6e817aa
commit ce4a7f5d8cb1dfbdecc73c62c5144019f6e817aa Author: Christopher Michael <devilho...@comcast.net> Date: Wed Jan 20 12:38:43 2021 -0500 ibar: Add NULL parent (for now) to call of e_entry_dialog_show function --- src/modules/ibar/e_mod_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_config.c b/src/modules/ibar/e_mod_config.c index 99a89a955..d8c4c5a5b 100644 --- a/src/modules/ibar/e_mod_config.c +++ b/src/modules/ibar/e_mod_config.c @@ -186,7 +186,7 @@ _cb_add(void *data, void *data2 EINA_UNUSED) E_Config_Dialog_Data *cfdata; cfdata = data; - e_entry_dialog_show(_("Create new IBar source"), "enlightenment", + e_entry_dialog_show(NULL, _("Create new IBar source"), "enlightenment", _("Enter a name for this new source:"), "", NULL, NULL, _cb_entry_ok, NULL, cfdata); } --