mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Merge pull request #106170 from IphStich/fix-typed-dictionary
Fix for debugging typed dictionaries
This commit is contained in:
@@ -1387,7 +1387,7 @@ void EditorPropertyDictionary::update_property() {
|
||||
|
||||
Variant::Type value_type;
|
||||
|
||||
if (dict.is_typed_value() && slot.prop_key) {
|
||||
if (dict.is_typed_value() && value_subtype != Variant::NIL && slot.prop_key) {
|
||||
value_type = value_subtype;
|
||||
} else {
|
||||
value_type = value.get_type();
|
||||
|
||||
Reference in New Issue
Block a user