editor: background file changes. Fix editor reload on background file change.

This commit is contained in:
Al Poole 2017-09-07 14:54:50 +01:00
parent 9be1db4858
commit d259a776a9
1 changed files with 3 additions and 3 deletions

View File

@ -1107,15 +1107,14 @@ void
edi_editor_reload(Edi_Editor *editor)
{
Elm_Code *code;
const char *path;
char *path;
ecore_thread_main_loop_begin();
code = elm_code_widget_code_get(editor->entry);
path = elm_code_file_path_get(code->file);
path = strdup(elm_code_file_path_get(code->file));
elm_code_file_clear(code->file);
code->file = elm_code_file_open(code, path);
editor->modified = EINA_FALSE;
editor->save_time = ecore_file_mod_time(path);
@ -1125,6 +1124,7 @@ edi_editor_reload(Edi_Editor *editor)
editor->save_timer = NULL;
}
free(path);
ecore_thread_main_loop_end();
}