From 7128c8fbe68de9365dc9da987911beb65ab4af07 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 21 Feb 2013 12:49:30 +0000 Subject: [PATCH] add e_toolbar init/shutdown to startup and shutdown --- src/bin/e_main.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 6d6522042..1adc61e6d 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -901,6 +901,17 @@ main(int argc, char **argv) TS("E_Gadcon Init Done"); _e_main_shutdown_push(e_gadcon_shutdown); + if (e_config->show_splash) + e_init_status_set(_("Setup Toolbars")); + TS("E_Toolbar Init"); + if (!e_toolbar_init()) + { + e_error_message_show(_("Enlightenment cannot set up its toolbars.\n")); + _e_main_shutdown(-1); + } + TS("E_Toolbar Init Done"); + _e_main_shutdown_push(e_toolbar_shutdown); + if (e_config->show_splash) e_init_status_set(_("Setup Wallpaper")); TS("E_Bg Init");