jaehwan pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=9b71b0c064d086f8678bb5229eeaa1aff8443b8b

commit 9b71b0c064d086f8678bb5229eeaa1aff8443b8b
Author: Jaehwan Kim <jae.hwan....@samsung.com>
Date:   Mon Sep 19 17:04:14 2016 +0900

    export: fix to call the popup dismiss.
    
    If the export is executed by command option, don't call the function
    that is related to popup.
---
 src/bin/ui/project_export.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/bin/ui/project_export.c b/src/bin/ui/project_export.c
index 1e44af2..5c9e184 100644
--- a/src/bin/ui/project_export.c
+++ b/src/bin/ui/project_export.c
@@ -46,7 +46,8 @@ _after_export_dev_check(void *data)
    ap.splash = splash_add(ap.win, _export_develop_setup, _export_teardown, 
NULL, data);
    evas_object_focus_set(ap.splash, true);
    evas_object_show(ap.splash);
-   popup_fileselector_helper_dismiss();
+   if (!ap.path.export_edj)
+     popup_fileselector_helper_dismiss();
 }
 
 static Eina_Bool
@@ -122,7 +123,8 @@ _after_export_release_check(void *data)
                            NULL, data);
    evas_object_focus_set(ap.splash, true);
    evas_object_show(ap.splash);
-   popup_fileselector_helper_dismiss();
+   if (!ap.path.export_edj)
+     popup_fileselector_helper_dismiss();
 }
 
 static Eina_Bool
@@ -202,7 +204,8 @@ _after_export_source_code_check(void *data)
    ap.splash = splash_add(ap.win, _export_source_code_setup, _export_teardown, 
NULL, data);
    evas_object_focus_set(ap.splash, true);
    evas_object_show(ap.splash);
-   popup_fileselector_helper_dismiss();
+   if (!ap.path.export_edc.path)
+     popup_fileselector_helper_dismiss();
 }
 
 static Eina_Bool

-- 


Reply via email to