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:
authorJulian Eisel <julian@blender.org>2021-07-20 21:58:15 +0300
committerJulian Eisel <julian@blender.org>2021-07-20 22:30:03 +0300
commit5a1b1c0ed2e6d085c93b8afd699407f92cc2d07d (patch)
treedc52de62700959ffedbc786e79ed39f6fe36f90b /source/blender/editors/armature
parent207df439e1ad50b3af691f91710b886d0e997993 (diff)
Cleanup: Getters for asset-handle data
While the asset-handle design is supposed to be temporary (see 35affaa971cf), I prefer keeping the fact that it's nothing but a file entry pointer an implementation detail that is abstracted away. So this introduces getters for the file data we typically access for asset-handles.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/pose_lib_2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/pose_lib_2.c b/source/blender/editors/armature/pose_lib_2.c
index eb091296282..84e49a6f42b 100644
--- a/source/blender/editors/armature/pose_lib_2.c
+++ b/source/blender/editors/armature/pose_lib_2.c
@@ -544,7 +544,7 @@ static bool poselib_asset_in_context(bContext *C)
AssetHandle asset_handle = CTX_wm_asset_handle(C, &asset_handle_valid);
return (asset_library != NULL) && asset_handle_valid &&
- (asset_handle.file_data->blentype == ID_AC);
+ (ED_asset_handle_get_id_type(&asset_handle) == ID_AC);
}
/* Poll callback for operators that require existing PoseLib data (with poses) to work. */