summaryrefslogtreecommitdiffstats
path: root/editor/editor_property_name_processor.h
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-11-09 17:09:31 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2022-11-24 16:37:54 +0100
commitaafa816946dbf06e71f48b2fc4c7a1edf1eec65c (patch)
tree59e06d70dbb6ab931c3aa14f961317785a77d273 /editor/editor_property_name_processor.h
parentf6f8a48459f9bbe97ee76a7186b9ae37e71e724b (diff)
downloadredot-engine-aafa816946dbf06e71f48b2fc4c7a1edf1eec65c.tar.gz
Improve editor property capitalization
- Don't capitalize stop words such as "at", "in" or "to". - Add more acronyms to capitalize. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
Diffstat (limited to 'editor/editor_property_name_processor.h')
-rw-r--r--editor/editor_property_name_processor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_property_name_processor.h b/editor/editor_property_name_processor.h
index 37d905c806..fcabbfd9d3 100644
--- a/editor/editor_property_name_processor.h
+++ b/editor/editor_property_name_processor.h
@@ -40,6 +40,7 @@ class EditorPropertyNameProcessor : public Node {
mutable HashMap<String, String> capitalize_string_cache;
HashMap<String, String> capitalize_string_remaps;
+ LocalVector<String> stop_words; // Exceptions that shouldn't be capitalized.
// Capitalizes property path segments.
String _capitalize_name(const String &p_name) const;