1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Merge pull request #49279 from Calinou/rename-string-is-abs-path-method

Rename `String.is_abs_path()` to `String.is_absolute_path()`
This commit is contained in:
Rémi Verschelde
2021-06-11 15:58:16 +02:00
committed by GitHub
17 changed files with 27 additions and 27 deletions

View File

@@ -770,7 +770,7 @@ void EditorNode::_resources_changed(const Vector<String> &p_resources) {
if (!res->editor_can_reload_from_file()) {
continue;
}
if (!res->get_path().is_resource_file() && !res->get_path().is_abs_path()) {
if (!res->get_path().is_resource_file() && !res->get_path().is_absolute_path()) {
continue;
}
if (!FileAccess::exists(res->get_path())) {