Skip to content

Commit

Permalink
Merge pull request #95898 from KoBeWi/capital_of_nonexistent_properties
Browse files Browse the repository at this point in the history
Remove references to deleted `capitalize_properties` setting
  • Loading branch information
akien-mga committed Aug 21, 2024
2 parents 2a98d8d + b314a91 commit 720615a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion editor/editor_property_name_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
9 changes: 5 additions & 4 deletions editor/inspector_dock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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."));
Expand Down

0 comments on commit 720615a

Please sign in to comment.