summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-15 10:42:37 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-15 10:42:37 -0600
commitf5431fe3f0f6373a5c19dd922b64eb419c484369 (patch)
tree129a6bf0e8e537fe6a5885ebb1e1ab15f79cd340 /editor
parentd4a62ace4846b9f5a2dd18962e767e7298a71d7a (diff)
parentcbc8468e3e0808e39b7cabe7e607dd7d6b72ecdc (diff)
downloadredot-engine-f5431fe3f0f6373a5c19dd922b64eb419c484369.tar.gz
Merge pull request #98220 from bruvzg/dict_ed_fix
[Editor] Fix dictionary editor removing wrong keys and not updating key labels.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_properties_array_dict.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp
index ba6b42f8f5..4b4c02f49b 100644
--- a/editor/editor_properties_array_dict.cpp
+++ b/editor/editor_properties_array_dict.cpp
@@ -1173,6 +1173,11 @@ void EditorPropertyDictionary::update_property() {
new_prop->set_h_size_flags(SIZE_EXPAND_FILL);
new_prop->set_read_only(is_read_only());
slot.set_prop(new_prop);
+ } else if (slot.index != EditorPropertyDictionaryObject::NEW_KEY_INDEX && slot.index != EditorPropertyDictionaryObject::NEW_VALUE_INDEX) {
+ Variant key = dict.get_key_at_index(slot.index);
+ String cs = key.get_construct_string();
+ slot.prop->set_label(cs);
+ slot.prop->set_tooltip_text(cs);
}
// We need to grab the focus of the property that is being changed, even if the type didn't actually changed.
@@ -1200,7 +1205,8 @@ void EditorPropertyDictionary::update_property() {
void EditorPropertyDictionary::_remove_pressed(int p_slot_index) {
Dictionary dict = object->get_dict().duplicate();
- dict.erase(dict.get_key_at_index(p_slot_index));
+ int index = slots[p_slot_index].index;
+ dict.erase(dict.get_key_at_index(index));
emit_changed(get_edited_property(), dict);
}