okra pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=30ba420c6dc7fea14064741a5114a49777c490b2

commit 30ba420c6dc7fea14064741a5114a49777c490b2
Author: Stephen 'Okra' Houston <smhousto...@gmail.com>
Date:   Thu Dec 15 09:00:35 2016 -0600

    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 ae3ce85..0e7b75d 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)

-- 


Reply via email to