From 30ba420c6dc7fea14064741a5114a49777c490b2 Mon Sep 17 00:00:00 2001 From: Stephen 'Okra' Houston Date: Thu, 15 Dec 2016 09:00:35 -0600 Subject: [PATCH] E_Config: Fix auto load of luncher This fixes T5007 https://phab.enlightenment.org/T5007 --- src/bin/e_config.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/e_config.c b/src/bin/e_config.c index ae3ce8504..0e7b75ddb 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -1466,14 +1466,14 @@ e_config_load(void) ibar_en = EINA_TRUE; else if (eina_streq(em->name, "luncher")) luncher_en = EINA_TRUE; - if (ibar_en && !luncher_en) - { - module = E_NEW(E_Config_Module, 1); - module->name = eina_stringshare_add("luncher"); - module->enabled = 1; - e_config->modules = eina_list_append(e_config->modules, module); - } } + if (ibar_en && !luncher_en) + { + module = E_NEW(E_Config_Module, 1); + module->name = eina_stringshare_add("luncher"); + module->enabled = 1; + e_config->modules = eina_list_append(e_config->modules, module); + } } } if (!e_config->remember_internal_fm_windows)