fix focus on reorder array

This commit is contained in:
ajreckof
2024-03-21 19:48:09 +01:00
committed by ajreckof
parent 3978628c6c
commit d113a68e43

View File

@@ -819,6 +819,7 @@ void EditorPropertyArray::_reorder_button_up() {
array.call("remove_at", reorder_slot.index);
array.call("insert", reorder_to_index, value_to_move);
slots[reorder_to_index % page_length].reorder_button->grab_focus();
emit_changed(get_edited_property(), array);
}