rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=57a7145f0ddf23841650a5ac60e02c4d46420cd0
commit 57a7145f0ddf23841650a5ac60e02c4d46420cd0 Author: Vyacheslav Reutskiy <v.reuts...@samsung.com> Date: Tue Oct 4 19:15:43 2016 +0300 project_close: avoid start splash for save process Change-Id: I3e13d9bc930b135746ee1dff6ab75acee9dd68d7 --- src/bin/ui/project_close.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/bin/ui/project_close.c b/src/bin/ui/project_close.c index 7cdec72..07fd897 100644 --- a/src/bin/ui/project_close.c +++ b/src/bin/ui/project_close.c @@ -108,6 +108,16 @@ _setup_save_splash(void *data, Splash_Status status __UNUSED__) popup_add(_("Project save"), NULL, BTN_CANCEL, NULL, NULL); return false; } + else + { + /* HOTFIX: now save - it's only file copy, and if file is small spash + * animation start after file copy and animation will player in loop. + * For avoid this situation I was add this hack. + * + * Need to update it, and rewrite correctly. + */ + return false; + } #ifdef HAVE_ENVENTOR } #endif /* HAVE_ENVENTOR */ --