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:
-rw-r--r--source/blender/editors/space_buttons/buttons_context.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c
index a6584966643..8cb0a3f3c86 100644
--- a/source/blender/editors/space_buttons/buttons_context.c
+++ b/source/blender/editors/space_buttons/buttons_context.c
@@ -1249,6 +1249,13 @@ ID *buttons_context_id_path(const bContext *C)
}
}
+ /* There is no valid image ID panel, Image Empty objects need this workaround.*/
+ if (sbuts->mainb == BCONTEXT_DATA && sbuts->flag & SB_PIN_CONTEXT) {
+ if (ptr->type == &RNA_Image && ptr->data) {
+ continue;
+ }
+ }
+
if (ptr->owner_id) {
return ptr->owner_id;
}