From 84a515ce8734914d5782b900ad9d1b33f292724c Mon Sep 17 00:00:00 2001 From: Al Poole Date: Fri, 8 Sep 2017 11:04:45 +0100 Subject: [PATCH] build: status. MOre verbose notfication title. Add status to the title of the notification also. --- src/bin/edi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edi_main.c b/src/bin/edi_main.c index 63ead1e..fff94b5 100644 --- a/src/bin/edi_main.c +++ b/src/bin/edi_main.c @@ -714,7 +714,7 @@ _edi_build_display_status_cb(int status, void *data) else eina_strbuf_append_printf(message, "%s of project %s in %s was successful.\n", name, edi_project_name_get(), edi_project_get()); - eina_strbuf_append_printf(title, "EDI :: %s Status", name); + eina_strbuf_append_printf(title, "EDI :: %s Status (%s)", name, status ? "Failure" : "Success"); edi_screens_desktop_notify(eina_strbuf_string_get(title), eina_strbuf_string_get(message));