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>2020-12-16 03:05:46 +0300
committerJulian Eisel <julian@blender.org>2020-12-16 14:10:58 +0300
commit055ef5df615632f81e30e39ae47b42a87af350ca (patch)
tree3fb33582bbd2b8da5ea67dc17a69c14ffc3c62f5 /source/blender/editors/util
parent975ca9193913c034f864121597e044d6eb043a5f (diff)
Cleanup: Rename Asset Browser context member from "active_id" to "id"
This is the same name we use elsewhere for the focused/active ID context member, so this should follow it.
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/ed_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/util/ed_util.c b/source/blender/editors/util/ed_util.c
index 6547e42f410..4740e4d8d33 100644
--- a/source/blender/editors/util/ed_util.c
+++ b/source/blender/editors/util/ed_util.c
@@ -507,7 +507,7 @@ void ED_OT_flush_edits(wmOperatorType *ot)
static bool lib_id_load_custom_preview_poll(bContext *C)
{
- const PointerRNA idptr = CTX_data_pointer_get(C, "active_id");
+ const PointerRNA idptr = CTX_data_pointer_get(C, "id");
BLI_assert(!idptr.data || RNA_struct_is_ID(idptr.type));
const ID *id = idptr.data;
@@ -541,7 +541,7 @@ static int lib_id_load_custom_preview_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
- PointerRNA idptr = CTX_data_pointer_get(C, "active_id");
+ PointerRNA idptr = CTX_data_pointer_get(C, "id");
ID *id = idptr.data;
BKE_previewimg_id_custom_set(id, path);