diff options
author | kobewi <kobewi4e@gmail.com> | 2024-08-21 12:31:43 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-08-21 17:27:54 +0200 |
commit | b314a9105a2eb352d987c5df007be27f9c676aa8 (patch) | |
tree | 82bba544cb203188e02528ba9c48951fd223e386 /editor | |
parent | 5ca419e32c58e671284b3b7f91257179657d9114 (diff) | |
download | redot-engine-b314a9105a2eb352d987c5df007be27f9c676aa8.tar.gz |
Remove references to deleted capitalize_properties setting
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_property_name_processor.h | 2 | ||||
-rw-r--r-- | editor/inspector_dock.cpp | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/editor/editor_property_name_processor.h b/editor/editor_property_name_processor.h index 2c68423c84..8d93e78ada 100644 --- a/editor/editor_property_name_processor.h +++ b/editor/editor_property_name_processor.h @@ -51,7 +51,7 @@ class EditorPropertyNameProcessor : public Node { StringName _get_context(const String &p_name, const String &p_property, const StringName &p_class) const; public: - // Matches `interface/inspector/capitalize_properties` editor setting. + // Matches `interface/inspector/default_property_name_style` editor setting. enum Style { STYLE_RAW, STYLE_CAPITALIZED, diff --git a/editor/inspector_dock.cpp b/editor/inspector_dock.cpp index acdbd6d9c4..aa075c80c3 100644 --- a/editor/inspector_dock.cpp +++ b/editor/inspector_dock.cpp @@ -141,13 +141,14 @@ void InspectorDock::_menu_option_confirm(int p_option, bool p_confirmed) { unique_resources_list_tree->clear(); if (resource_propnames.size()) { - TreeItem *root = unique_resources_list_tree->create_item(); + const EditorPropertyNameProcessor::Style name_style = inspector->get_property_name_style(); - for (int i = 0; i < resource_propnames.size(); i++) { - String propname = resource_propnames[i].replace("/", " / "); + TreeItem *root = unique_resources_list_tree->create_item(); + for (const String &E : resource_propnames) { + const String propname = EditorPropertyNameProcessor::get_singleton()->process_name(E, name_style); TreeItem *ti = unique_resources_list_tree->create_item(root); - ti->set_text(0, bool(EDITOR_GET("interface/inspector/capitalize_properties")) ? propname.capitalize() : propname); + ti->set_text(0, propname); } unique_resources_label->set_text(TTR("The following resources will be duplicated and embedded within this resource/object.")); |