Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2021-12-02 16:40:20 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-12-02 16:40:20 +0300
commit23ffcb242dfe622954f67dab8af6ed72d5ef2917 (patch)
treef5ca077f001594302c7ff3e154090ffa74b00842 /source/blender/blenkernel/intern/action.c
parent1620dcd208a9156d06425b4a700f4c9308570efa (diff)
parent61e92eeb3e38f6dc887b63102b6a9acc9cce7e26 (diff)
Merge remote-tracking branch 'origin/blender-v3.0-release'
Diffstat (limited to 'source/blender/blenkernel/intern/action.c')
-rw-r--r--source/blender/blenkernel/intern/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index f19727a8cdc..95d3b2bf53e 100644
--- a/source/blender/blenkernel/intern/action.c
+++ b/source/blender/blenkernel/intern/action.c
@@ -289,7 +289,7 @@ static void action_blend_read_expand(BlendExpander *expander, ID *id)
static IDProperty *action_asset_type_property(const bAction *action)
{
- const bool is_single_frame = !BKE_action_has_single_frame(action);
+ const bool is_single_frame = BKE_action_has_single_frame(action);
IDPropertyTemplate idprop = {0};
idprop.i = is_single_frame;