blender-v3.6-release backports #111957

Merged
Philipp Oeser merged 10 commits from lichtwerk/blender:blender-v3.6-release into blender-v3.6-release 2023-09-05 12:27:20 +02:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 4cf03b28b3 - Show all commits

View File

@ -1604,8 +1604,11 @@ static int rna_SpaceView3D_icon_from_show_object_viewport_get(PointerRNA *ptr)
&v3d->object_type_exclude_select);
}
static char *rna_View3DShading_path(const PointerRNA *UNUSED(ptr))
static char *rna_View3DShading_path(const PointerRNA *ptr)
{
if (GS(ptr->owner_id->name) == ID_SCE) {
return BLI_strdup("display.shading");
}
return BLI_strdup("shading");
}