diff options
| author | Rémi Verschelde | 2017-05-02 11:25:27 +0200 |
|---|---|---|
| committer | GitHub | 2017-05-02 11:25:27 +0200 |
| commit | 82fa41bce3ec7fdd59cfc10f57d72fa092f48b27 (patch) | |
| tree | d9f025aaa4a2ae32c5dc98b2936c0704a12e9e53 /editor/property_editor.h | |
| parent | 28173ad35d72fad12b2810133a3c3d1827bdeeec (diff) | |
| parent | 7b315dc666a7b03a9622e10fb79446b58170fba5 (diff) | |
| download | godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.tar.gz godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.tar.zst godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.zip | |
Merge pull request #8541 from RandomShaper/opt-out-capitalization
Add setting to opt-out of capitalization in property inspectors
Diffstat (limited to '')
| -rw-r--r-- | editor/property_editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/property_editor.h b/editor/property_editor.h index 3b68e80ac..b88ba38e1 100644 --- a/editor/property_editor.h +++ b/editor/property_editor.h @@ -272,7 +272,8 @@ public: custom_editor->set_read_only(p_read_only); } - void set_capitalize_paths(bool p_capitalize); + bool is_capitalize_paths_enabled() const; + void set_enable_capitalize_paths(bool p_capitalize); void set_autoclear(bool p_enable); void set_show_categories(bool p_show); |
