rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=f68a8ec26fbcab6e7be41056f4c07ccfd5c034a5
commit f68a8ec26fbcab6e7be41056f4c07ccfd5c034a5 Author: Vyacheslav Reutskiy <[email protected]> Date: Thu May 26 11:47:51 2016 +0300 eflete: show correct home tab if eflete started with opts Change-Id: I37bea0bbfda4ccc77ab01b2032ed9b3fecb7c271 --- src/bin/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index 07109c7..1553230 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -129,7 +129,7 @@ _import_edj(void *data __UNUSED__) tabs_menu_import_edj_data_set(proj_name, pro_path, file, widgets); eina_tmpstr_del(proj_name); } - //tabs_menu_tab_open(TAB_HOME_IMPORT_EDJ); + tabs_home_tab_add(TAB_HOME_IMPORT_EDJ); } static void @@ -148,7 +148,7 @@ _import_edc(void *data __UNUSED__) tabs_menu_import_edc_data_set(proj_name, pro_path, file, img_dirs, snd_dirs, fnt_dirs, data_dirs); eina_tmpstr_del(proj_name); } - //tabs_menu_tab_open(TAB_HOME_IMPORT_EDC); + tabs_home_tab_add(TAB_HOME_IMPORT_EDC); } static void @@ -167,7 +167,7 @@ _new_project(void *data __UNUSED__) tabs_menu_new_data_set(proj_name, pro_path, widgets); eina_tmpstr_del(proj_name); } - //tabs_menu_tab_open(TAB_HOME_NEW_PROJECT); + tabs_home_tab_add(TAB_HOME_NEW_PROJECT); } EAPI_MAIN int --
