Fix #117116: Online manual option not working in context menu #117237

Open
Philipp Oeser wants to merge 1 commits from lichtwerk/blender:117116_c into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Member

This was the case when the context menu was spawned from a button in a
menu that was in turn spawned via WM_OT_call_menu.
Then, UI_context_active_but_get (or
UI_context_active_but_get_respect_menu even) are not getting an active
button.
Reason for this is that the current context region (or the region stored
in the popup) is freed from its blocks somewhere along the way when
actually executing the operator. The code around nested menus is a bit
hard to follow, the underlying issue (not having a valid region in
context to work with at all times) should definitely be solved (for
another reason, see NOTE / DOWNSIDE below).

However, there is another way to solve this, and this is calling
doc_view_manual directly with its doc_id set already (the doc_id
is already available when building the context menu, used for the
Online Python Reference).

NOTE: the same failure is true for Copy Python Command -- and the
"workaround fix" is a bit more work there (it does not have a vairiant
not using the context buttons).

DOWNSIDE: we loose the shortcut (F1) shown in the context menu, because
that still needs to point to doc_view_manual_ui_context

This was the case when the context menu was spawned from a button in a menu that was in turn spawned via `WM_OT_call_menu`. Then, `UI_context_active_but_get` (or `UI_context_active_but_get_respect_menu` even) are not getting an active button. Reason for this is that the current context region (or the region stored in the popup) is freed from its blocks _somewhere_ along the way when actually executing the operator. The code around nested menus is a bit hard to follow, the underlying issue (not having a valid region in context to work with at all times) should definitely be solved (for another reason, see NOTE / DOWNSIDE below). However, there is another way to solve this, and this is calling `doc_view_manual` directly with its `doc_id` set already (the `doc_id` is already available when building the context menu, used for the `Online Python Reference`). NOTE: the same failure is true for `Copy Python Command` -- and the "workaround fix" is a bit more work there (it does not have a vairiant **not** using the context buttons). DOWNSIDE: we loose the shortcut (F1) shown in the context menu, because that still needs to point to `doc_view_manual_ui_context`
Philipp Oeser added 1 commit 2024-01-17 16:34:55 +01:00
f0ed536672 Fix #117116: Online manual option not working in context menu
This was the case when the context menu was spawned from a button in a
menu that was in turn spawned via `WM_OT_call_menu`.
Then, `UI_context_active_but_get` (or
`UI_context_active_but_get_respect_menu` even) are not getting an active
button.
Reason for this is that the current context region (or the region stored
in the popup) is freed from its blocks _somewhere_ along the way when
actually executing the operator. The code around nested menus is a bit
hard to follow, the underlying issue (not having a valid region in
context to work with at all times) should definitely be solved (for
another reason, see NOTE / DOWNSIDE below).

However, there is another way to solve this, and this is calling
`doc_view_manual` directly with its `doc_id` set already (the `doc_id`
is already available when building the context menu, used for the
`Online Python Reference`).

NOTE: the same failure is true for `Copy Python Command` -- and the
"workaround fix" is a bit more work there (it does not have a vairiant
**not** using the context buttons).

DOWNSIDE: we loose the shortcut (F1) shown in the context menu, because
that still needs to point to `doc_view_manual_ui_context`
Philipp Oeser added this to the User Interface project 2024-01-18 13:14:36 +01:00
Member

Hi, this indeed fixes the problem. WM_OT_doc_view_manual_ui_context can be removed then?

I never used F1 for searching docs but others might be using it regularly.

(not sure whom to ask for review: Pablo/Harley?)

Hi, this indeed fixes the problem. `WM_OT_doc_view_manual_ui_context` can be removed then? I never used `F1` for searching docs but others might be using it regularly. (not sure whom to ask for review: Pablo/Harley?)
Merge conflict checking is in progress. Try again in few moments.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u 117116_c:lichtwerk-117116_c
git checkout lichtwerk-117116_c
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
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
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info 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
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#117237
No description provided.