Merge branch 'blender-v3.0-release'

This commit is contained in:
Campbell Barton 2021-11-09 15:49:41 +11:00
commit 2772a033c9
1 changed files with 5 additions and 1 deletions

View File

@ -3001,7 +3001,11 @@ class VIEW3D_PT_tools_active(ToolSelectPanelHelper, Panel):
),
None,
lambda context: (
(_defs_view3d_generic.cursor,)
(
_defs_view3d_generic.cursor,
None,
*VIEW3D_PT_tools_active._tools_transform,
)
if context is None or context.pose_object
else ()
),