- [ASE File In] Add small delay before refreshing file to prevent overlapped read ("ASE file read error.").

This commit is contained in:
Tanasart 2024-07-05 13:03:44 +07:00
parent 4bd4997f23
commit ac6a604465

View file

@ -230,7 +230,6 @@ function Node_ASE_File_Read(_x, _y, _group = noone) : Node(_x, _y, _group) const
} }
path_current = path; path_current = path;
edit_time = max(edit_time, file_get_modify_s(path_current));
var ext = string_lower(filename_ext(path)); var ext = string_lower(filename_ext(path));
var _name = filename_name_only(path); var _name = filename_name_only(path);
@ -320,8 +319,8 @@ function Node_ASE_File_Read(_x, _y, _group = noone) : Node(_x, _y, _group) const
if(!file_exists_empty(path_current)) return; if(!file_exists_empty(path_current)) return;
if(file_get_modify_s(path_current) > edit_time) { if(file_get_modify_s(path_current) > edit_time) {
updatePaths(); edit_time = max(edit_time, file_get_modify_s(path_current));
triggerRender(); run_in(5, function() /*=>*/ { updatePaths(); triggerRender(); });
} }
} }