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-21 20:02:20 +0300
committerJulian Eisel <julian@blender.org>2021-07-21 20:35:39 +0300
commit8de2b6a02020ad0bc4e4ad7868988a37251e3f88 (patch)
treedb5b0dc0e055edb7137de9386652eecaf7d90eb0 /source/blender/editors/screen/screen_context.c
parent952ded57dec6fd5c09a579f1af036e8f9efd7e1e (diff)
Assets: Rename workspace active asset library DNA variable
This new variable was introduced with 7898089de3f2. We don't usually use an `active` prefix variable. Plus, this makes the name match the one of the Asset Browser active library variable, so we can use the `rna_def_asset_library_reference_common()` helper for both. This will cause Asset Views to open with the default "Current File" Asset Library. We could avoid that, but it's a minor issue really.
Diffstat (limited to 'source/blender/editors/screen/screen_context.c')
-rw-r--r--source/blender/editors/screen/screen_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c
index 3ce2f326dca..8123d8bb104 100644
--- a/source/blender/editors/screen/screen_context.c
+++ b/source/blender/editors/screen/screen_context.c
@@ -1031,7 +1031,7 @@ static eContextResult screen_ctx_asset_library(const bContext *C, bContextDataRe
{
WorkSpace *workspace = CTX_wm_workspace(C);
CTX_data_pointer_set(
- result, &workspace->id, &RNA_AssetLibraryReference, &workspace->active_asset_library);
+ result, &workspace->id, &RNA_AssetLibraryReference, &workspace->asset_library);
return CTX_RESULT_OK;
}