all sculpt tools don't navigate to a relevant page when pressing f1 #90712
Labels
No Label
Meta
Good First Issue
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
Eevee & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds, Tests & Devices
Module
Python API
Module
Rendering & Cycles
Module
Sculpt, Paint & Texture
Module
User Interface
Module
VFX & Video
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Information from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
5 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-manual#90712
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
System Information
Operating system: Windows-10-10.0.19041-SP0 64 Bits
Graphics card: GeForce GTX 1070/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 461.92
Blender Version
Broken: version: 3.0.0 Alpha, branch: master, commit date: 2021-08-10 21:06, hash:
blender/blender@fcd2d63b64
Worked: (newest version of Blender that worked as expected)
Short description of error
all sculpt tools don't navigate to a relevant page when pressing f1. This is made worse by the tooltips not showing sufficient information on tool usage (such as each tool's shortcuts
and their functionality).
There also seems to be a mismatch of data from one page to the next. The toolbar page for example only shows a small selection of the tools
Whereas the tool pages have different options.
Reason for raising this, is that I literally can't find how to remove a face set. There doesn't seem to be any mention of it on the edit face set's documentation page.
Added subscriber: @3di
Added subscriber: @PratikPB2123
Not sure if this is specific to sculpt tools but happens with every tool present over toolbar (irrespective of object interaction mode)
Added subscriber: @lichtwerk
Changed status from 'Needs Triage' to: 'Needs Developer To Reproduce'
Also find that lacking.
Might not be considered a bug, will let the module teams decide.
Added subscribers: @ideasman42, @Blendify
Changed status from 'Needs Developer To Reproduce' to: 'Confirmed'
I am going to consider this a known issue, the "View Online Manual" operator uses the python function/property such as
bpy.ops.object.join()
orbpy.types.Object.scale
for operators this does not take into account the function parameters.In the case of the active tools they are "activated" via the
bpy.ops.wm.tool_set_by_id
operator using thename
parameter such as:bpy.ops.wm.tool_set_by_id(name="builtin.select_box")
Since tools are now a vital aspect of Blender's UI it would be nice to add support to directly access the manual for these tools.
The way I can see that this could work is by creating an exception for
bpy.ops.wm.tool_set_by_id
such that it insteadlooks for the name parameter and checks the
manual_url_mapping
for something liketool.builtin.select_box
.CC @ideasman42 is this a reasonable hack/workaround?
Added subscriber: @JulienKaspar