mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Set doc_name
even when categories are hidden in the inspector
Otherwise, tooltips will fail to fetch descriptions.
This commit is contained in:
parent
1e6b11dcd4
commit
1bfcb6ee65
@ -37,7 +37,7 @@
|
||||
#include "core/object/script_language.h"
|
||||
#include "core/os/keyboard.h"
|
||||
#include "core/string/string_builder.h"
|
||||
#include "core/version.h"
|
||||
#include "core/version_generated.gen.h"
|
||||
#include "editor/doc_data_compressed.gen.h"
|
||||
#include "editor/editor_node.h"
|
||||
#include "editor/editor_paths.h"
|
||||
@ -3380,6 +3380,7 @@ EditorHelpBit::HelpData EditorHelpBit::_get_theme_item_help_data(const StringNam
|
||||
if (theme_item.name == p_theme_item_name) {
|
||||
result = current;
|
||||
found = true;
|
||||
|
||||
if (!is_native) {
|
||||
break;
|
||||
}
|
||||
|
@ -2869,15 +2869,6 @@ void EditorInspector::update_tree() {
|
||||
// Otherwise the category was probably added via `@export_category` or `_get_property_list()`.
|
||||
const bool is_custom_category = p.hint_string.is_empty();
|
||||
|
||||
if ((is_custom_category && !show_custom_categories) || (!is_custom_category && !show_standard_categories)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Hide the "MultiNodeEdit" category for MultiNodeEdit.
|
||||
if (Object::cast_to<MultiNodeEdit>(object) && p.name == "MultiNodeEdit") {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Iterate over remaining properties. If no properties in category, skip the category.
|
||||
List<PropertyInfo>::Element *N = E_property->next();
|
||||
bool valid = true;
|
||||
@ -2898,22 +2889,20 @@ void EditorInspector::update_tree() {
|
||||
continue; // Empty, ignore it.
|
||||
}
|
||||
|
||||
// Create an EditorInspectorCategory and add it to the inspector.
|
||||
EditorInspectorCategory *category = memnew(EditorInspectorCategory);
|
||||
main_vbox->add_child(category);
|
||||
category_vbox = nullptr; //reset
|
||||
String category_label;
|
||||
String category_tooltip;
|
||||
Ref<Texture> category_icon;
|
||||
|
||||
// Do not add an icon, do not change the current class (`doc_name`) for custom categories.
|
||||
if (is_custom_category) {
|
||||
category->label = p.name;
|
||||
category->set_tooltip_text(p.name);
|
||||
category_label = p.name;
|
||||
category_tooltip = p.name;
|
||||
} else {
|
||||
String type = p.name;
|
||||
String label = p.name;
|
||||
doc_name = p.name;
|
||||
category_label = p.name;
|
||||
|
||||
// Use category's owner script to update some of its information.
|
||||
if (!EditorNode::get_editor_data().is_type_recognized(type) && ResourceLoader::exists(p.hint_string)) {
|
||||
if (!EditorNode::get_editor_data().is_type_recognized(p.name) && ResourceLoader::exists(p.hint_string)) {
|
||||
Ref<Script> scr = ResourceLoader::load(p.hint_string, "Script");
|
||||
if (scr.is_valid()) {
|
||||
StringName script_name = EditorNode::get_editor_data().script_class_get_name(scr->get_path());
|
||||
@ -2926,32 +2915,50 @@ void EditorInspector::update_tree() {
|
||||
doc_name = docs[docs.size() - 1].name;
|
||||
}
|
||||
if (script_name != StringName()) {
|
||||
label = script_name;
|
||||
category_label = script_name;
|
||||
}
|
||||
|
||||
// Find the icon corresponding to the script.
|
||||
if (script_name != StringName()) {
|
||||
category->icon = EditorNode::get_singleton()->get_class_icon(script_name);
|
||||
category_icon = EditorNode::get_singleton()->get_class_icon(script_name);
|
||||
} else {
|
||||
category->icon = EditorNode::get_singleton()->get_object_icon(scr.ptr(), "Object");
|
||||
category_icon = EditorNode::get_singleton()->get_object_icon(scr.ptr(), "Object");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (category->icon.is_null() && !type.is_empty()) {
|
||||
category->icon = EditorNode::get_singleton()->get_class_icon(type);
|
||||
if (category_icon.is_null() && !p.name.is_empty()) {
|
||||
category_icon = EditorNode::get_singleton()->get_class_icon(p.name);
|
||||
}
|
||||
|
||||
// Set the category label.
|
||||
category->label = label;
|
||||
category->doc_class_name = doc_name;
|
||||
|
||||
if (use_doc_hints) {
|
||||
// `|` separators used in `EditorHelpBit`.
|
||||
category->set_tooltip_text("class|" + doc_name + "|");
|
||||
category_tooltip = "class|" + doc_name + "|";
|
||||
}
|
||||
}
|
||||
|
||||
if ((is_custom_category && !show_custom_categories) || (!is_custom_category && !show_standard_categories)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Hide the "MultiNodeEdit" category for MultiNodeEdit.
|
||||
if (Object::cast_to<MultiNodeEdit>(object) && p.name == "MultiNodeEdit") {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Create an EditorInspectorCategory and add it to the inspector.
|
||||
EditorInspectorCategory *category = memnew(EditorInspectorCategory);
|
||||
main_vbox->add_child(category);
|
||||
category_vbox = nullptr; // Reset.
|
||||
|
||||
// Set the category info.
|
||||
category->label = category_label;
|
||||
category->set_tooltip_text(category_tooltip);
|
||||
category->icon = category_icon;
|
||||
if (!is_custom_category) {
|
||||
category->doc_class_name = doc_name;
|
||||
}
|
||||
|
||||
// Add editors at the start of a category.
|
||||
for (Ref<EditorInspectorPlugin> &ped : valid_plugins) {
|
||||
ped->parse_category(object, p.name);
|
||||
|
Loading…
Reference in New Issue
Block a user