diff options
| author | Indah Sylvia | 2017-08-07 17:17:31 +0700 |
|---|---|---|
| committer | Indah Sylvia | 2017-08-07 18:24:35 +0700 |
| commit | 5ae78fdf6adf4b3ab417d2b6fd5a41bfa6d5cfe2 (patch) | |
| tree | 3f0dcef53a38d356a40fd7adce40387f21904a18 /editor/resources_dock.cpp | |
| parent | 7e4970214c92fec0e7262f36765764a81e28b2be (diff) | |
| download | godot-5ae78fdf6adf4b3ab417d2b6fd5a41bfa6d5cfe2.tar.gz godot-5ae78fdf6adf4b3ab417d2b6fd5a41bfa6d5cfe2.tar.zst godot-5ae78fdf6adf4b3ab417d2b6fd5a41bfa6d5cfe2.zip | |
Makes all Godot API's methods Lower Case
Diffstat (limited to 'editor/resources_dock.cpp')
| -rw-r--r-- | editor/resources_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/resources_dock.cpp b/editor/resources_dock.cpp index d3b68d92e..db3bf6a35 100644 --- a/editor/resources_dock.cpp +++ b/editor/resources_dock.cpp @@ -204,7 +204,7 @@ void ResourcesDock::_update_name(TreeItem *item) { else if (res->get_path() != "" && res->get_path().find("::") == -1) item->set_text(0, res->get_path().get_file()); else - item->set_text(0, res->get_class() + " (" + itos(res->get_instance_ID()) + ")"); + item->set_text(0, res->get_class() + " (" + itos(res->get_instance_id()) + ")"); } void ResourcesDock::remove_resource(const Ref<Resource> &p_resource) { |
