diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-13 11:21:37 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-13 11:21:37 +0200 |
commit | 40d8d82b852aa6ac4bce0d509fb5d58d14bddc12 (patch) | |
tree | 305b273862c64a418ab32e190fec322f1d11cca3 /modules/mono | |
parent | 04456cf42d852eb5772af7c859550b7ac1ccc13b (diff) | |
parent | 2d493e85a93ada822e4b61f5f001775c67e076fd (diff) | |
download | redot-engine-40d8d82b852aa6ac4bce0d509fb5d58d14bddc12.tar.gz |
Merge pull request #93779 from hayahane/fix_get_property_cs
[C#] Fix `get_property_list` get wrong order of properties
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 177859f270..5d59c33636 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1524,9 +1524,10 @@ void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const { } } + props.reverse(); for (PropertyInfo &prop : props) { validate_property(prop); - p_properties->push_back(prop); + p_properties->push_front(prop); } } |