mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Fixes resources name not showing in the inspector
This commit is contained in:
parent
4c1a5d9cfe
commit
f236507689
@ -2380,7 +2380,7 @@ void EditorPropertyResource::update_property() {
|
||||
if (res->get_name() != String()) {
|
||||
assign->set_text(res->get_name());
|
||||
} else if (res->get_path().is_resource_file()) {
|
||||
assign->set_text(res->get_name());
|
||||
assign->set_text(res->get_path().get_file());
|
||||
assign->set_tooltip(res->get_path());
|
||||
} else {
|
||||
assign->set_text(res->get_class());
|
||||
|
Loading…
Reference in New Issue
Block a user