ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/tools/edi.git/commit/?id=feb1fc18e7171207bf4ab748f765b93f88321545
commit feb1fc18e7171207bf4ab748f765b93f88321545 Author: Andy Williams <a...@andywilliams.me> Date: Sun May 14 17:55:31 2017 +0100 whitespace --- src/bin/editor/edi_editor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/editor/edi_editor.c b/src/bin/editor/edi_editor.c index 95a0b21..72d64bb 100644 --- a/src/bin/editor/edi_editor.c +++ b/src/bin/editor/edi_editor.c @@ -78,7 +78,7 @@ _edi_editor_file_change_popup(Edi_Editor *editor) box = elm_box_add(editor->popup); label = elm_label_add(editor->popup); elm_object_text_set(label, "File has changed on disk."); - evas_object_show(label); + evas_object_show(label); elm_box_pack_end(box, label); table = elm_table_add(editor->popup); @@ -115,14 +115,14 @@ edi_editor_save(Edi_Editor *editor) filename = elm_code_file_path_get(code->file); mtime = ecore_file_mod_time(filename); - - if ((editor->save_time) && (editor->save_time < mtime)) + + if ((editor->save_time) && (editor->save_time < mtime)) { ecore_timer_del(editor->save_timer); editor->save_timer = NULL; _edi_editor_file_change_popup(editor); editor->modified = EINA_FALSE; - return; + return; } edi_mainview_save(); --