diff --git a/bindings/python/src/_pyghex/unstructured/field_descriptor.cpp b/bindings/python/src/_pyghex/unstructured/field_descriptor.cpp index f2a46fa5..2fb7d923 100644 --- a/bindings/python/src/_pyghex/unstructured/field_descriptor.cpp +++ b/bindings/python/src/_pyghex/unstructured/field_descriptor.cpp @@ -177,7 +177,7 @@ register_field_descriptor(pybind11::module& m) std::size_t levels = (info.ndim == 1) ? 1u : (std::size_t)info.shape[1]; - return type{dom, static_cast(info.ptr), levels, levels_first}; + return type{dom, static_cast(info.ptr), levels, levels_first, outer_strides}; }), pybind11::keep_alive<0, 2>()); });