diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2017-11-24 13:57:18 -0300 | 
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2017-11-24 14:00:01 -0300 | 
| commit | 60de40726209657b5581c9a6765df21fb0e954ab (patch) | |
| tree | c919f34c70391002f37ee34beb55aff32476380c | |
| parent | 69aa29bbb32936689f36f19bc7bbb3ed7524a60e (diff) | |
Add a bit space around the .import [deps] tag to make it more readable.
| -rw-r--r-- | editor/editor_file_system.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index 56474a6d2d..1cc518ff31 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1410,7 +1410,7 @@ void EditorFileSystem::_reimport_file(const String &p_file) {  	f->store_line(""); -	f->store_line("[deps]"); +	f->store_line("[deps]\n");  	if (gen_files.size()) {  		Array genf; @@ -1424,7 +1424,7 @@ void EditorFileSystem::_reimport_file(const String &p_file) {  		f->store_line("");  	} -	f->store_line("source_md5=\"" + FileAccess::get_md5(p_file) + "\""); +	f->store_line("source_md5=\"" + FileAccess::get_md5(p_file) + "\"\n");  	f->store_line("[params]");  	f->store_line("");  |