Markers selection seems inconsistent #129630
Labels
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Code Documentation
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
FBX
Interest
Freestyle
Interest
Geometry Nodes
Interest
glTF
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 & 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
Viewport & EEVEE
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Asset Browser Project
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
Asset System
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Module
Viewport & EEVEE
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Severity
High
Severity
Low
Severity
Normal
Severity
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
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#129630
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: macOS-14.7-arm64-arm-64bit 64 Bits
Graphics card: Metal API Apple M2 Pro 1.2
Blender Version
Broken: version: 4.1.1, branch: blender-v4.1-release, commit date: 2024-04-15 15:11, hash:
e1743a0317bc
Worked: 3.1.2
Short description of error
I'm not sure if this is enough for a bug report
I think markers selection behavior should be similar to selection of keyframe since they are next to each other
So box selection work only when you press B to do it from 3.2
I hope it just Shift + Drag to select more and Ctrl + Drag to select less markers just like keyframes
Exact steps for others to reproduce the error
I can confirm the issue.
It worked in Blender 3.1.2, and the inconsistency in 4.2 can be classified as a regression bug.
Not sure if it is related, but the release notes states:
Cc @dr.sybren
Markers selection seem inconsistanceto Markers selection seems inconsistentI can't reproduce the inconsistency with "Click and Hold then Drag mouse to box select" on Blender 4.3-alpha, so it seems like that got fixed already.
This is me dragging with left mouse, with Left Mouse Select in the prefs:
I don't fully agree with this reasoning, by the way. Editing keys is a much more common operation than editing markers. The fact that the former has more possible ways to select & manipulate things than the latter is not a bug.
That I agree with, but it seems to have been fixed already? I can't reproduce this issue in 4.2.3.
I test again with 4.2.3
Seem like that work with only some mode
Mode that work
Mode that doesn't work
It seems to be a conflict between these two keymap items. If I remove the first one, the box-drag-select works just fine.
I'll discuss with the UI module what's the best way to get this fixed.
From looking into this, some notes for the record:
Selection in animation/2D views uses fairly intricate logic to activate either: select-picking / tweak (select + translate) / box-select / de-select all. Internally a press event may start a modal operator that waits for release or drag.
The marker region attempts to activate selection operators for both the dope-sheet & markers - where both are attempting to handle the press/release/drag actions. Which isn't working - it's not even clear to me how this would be expected to work.
Since two keymaps attempting to handle the events is fragile & error prone - changes to event handling in this area is likely to cause user visible changes, so I don't think it's especially useful to dig into when behavior changed, unless the previous functionality was fully functional.
As far as I can see it's simply not practical to attempt to handle the selection logic with two key-maps at once, submitted PR to address this !129841.