Cleanup: format

This commit is contained in:
Campbell Barton 2023-08-24 11:37:29 +10:00
parent 4492742487
commit a13823057c
6 changed files with 7 additions and 7 deletions

View File

@ -8,11 +8,13 @@ used to update other properties or synchronize with external data.
All properties define update functions except for CollectionProperty.
.. warning::
Remember that these callbacks may be executed in threaded context.
.. warning::
If the property belongs to an Operator, the update callback's first
parameter will be an OperatorProperties instance, rather than an instance
If the property belongs to an Operator, the update callback's first
parameter will be an OperatorProperties instance, rather than an instance
of the operator itself. This means you can't access other internal functions
of the operator, only its other properties.

View File

@ -8,6 +8,7 @@ automatically. Instead, the `get` and `set` functions will be called when the pr
is respectively read or written from the API.
.. warning::
Remember that these callbacks may be executed in threaded context.
"""

View File

@ -1518,4 +1518,3 @@ void BKE_animdata_blend_read_lib(BlendLibReader *reader, ID *id, AnimData *adt)
/* link NLA-data */
BKE_nla_blend_read_lib(reader, id, &adt->nla_tracks);
}

View File

@ -6594,4 +6594,3 @@ void BKE_constraint_blend_read_lib(BlendLibReader *reader, ID *id, ListBase *con
BKE_constraints_id_loop(conlist, lib_link_constraint_cb, IDWALK_NOP, &cld);
}

View File

@ -2406,4 +2406,3 @@ void BKE_nla_blend_read_lib(BlendLibReader *reader, ID *id, ListBase *tracks)
blend_lib_read_nla_strips(reader, id, &nlt->strips);
}
}

View File

@ -729,7 +729,7 @@ if(WITH_COMPOSITOR_CPU)
endif()
endif()
# NOTE: WITH_COMPOSITOR_CPU is needed for rendering.
# NOTE: WITH_COMPOSITOR_CPU is needed for rendering.
if(WITH_COMPOSITOR_REALTIME_TESTS AND WITH_COMPOSITOR_CPU)
if(NOT OPENIMAGEIO_IDIFF)
message(WARNING "Disabling realtime compositor tests because OIIO idiff does not exist")
@ -744,7 +744,7 @@ if(WITH_COMPOSITOR_REALTIME_TESTS AND WITH_COMPOSITOR_CPU)
multiple_node_setups
)
if(WITH_LIBMV)
list(APPEND compositor_tests distort matte)
endif()