netstar pushed a commit to branch master. http://git.enlightenment.org/tools/edi.git/commit/?id=b8642ab63c537adadf582a79609ea821dffbe3b8
commit b8642ab63c537adadf582a79609ea821dffbe3b8 Author: Al Poole <[email protected]> Date: Tue Sep 5 16:13:05 2017 +0100 main: show console panel before we start the build process. Show the console panel before the build process begins. --- src/bin/edi_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/edi_main.c b/src/bin/edi_main.c index a2dbab0..97009eb 100644 --- a/src/bin/edi_main.c +++ b/src/bin/edi_main.c @@ -721,7 +721,10 @@ static void _edi_build_project(void) { if (edi_exe_notify_handle("edi_build", _edi_build_display_status_cb)) - edi_builder_build(); + { + edi_consolepanel_show(); + edi_builder_build(); + } } static void --
