Sequencer: Meta Strip bugs/unfinished implementation #74130

Closed
opened 2020-02-23 09:15:25 +01:00 by tintwotin · 11 comments

System Information
Operating system: Windows-10-10.0.17763-SP0 64 Bits
Graphics card: Intel(R) UHD Graphics 600 Intel 4.5.0 - Build 26.20.100.7262

Blender Version
Broken: version: 2.83 (sub 4), branch: master (modified), commit date: 2020-02-22 16:08, hash: c26f470cfe
Worked: (optional)

Short description of error
There are a couple of bugs/unfinished implementation of the Meta Strips in the Sequencer:

  • When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel:
    image.png
  • There is no Meta Strip options in the sidebar(like this):
    image.png

There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range. Maybe this range should have a color so it is clearly distinct:
image.png

There is no Back to Previous button:
image.png
AFAIK there is no "inside meta" flag which can be used in space_sequencer.py to show/not show such a button.

**System Information** Operating system: Windows-10-10.0.17763-SP0 64 Bits Graphics card: Intel(R) UHD Graphics 600 Intel 4.5.0 - Build 26.20.100.7262 **Blender Version** Broken: version: 2.83 (sub 4), branch: master (modified), commit date: 2020-02-22 16:08, hash: `c26f470cfe` Worked: (optional) **Short description of error** There are a couple of bugs/unfinished implementation of the Meta Strips in the Sequencer: - When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel: ![image.png](https://archive.blender.org/developer/F8364028/image.png) - There is no Meta Strip options in the sidebar(like this): ![image.png](https://archive.blender.org/developer/F8364051/image.png) There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range. Maybe this range should have a color so it is clearly distinct: ![image.png](https://archive.blender.org/developer/F8364062/image.png) There is no Back to Previous button: ![image.png](https://archive.blender.org/developer/F8364075/image.png) AFAIK there is no "inside meta" flag which can be used in space_sequencer.py to show/not show such a button.
Author

Added subscriber: @tintwotin

Added subscriber: @tintwotin

Added subscriber: @WilliamReynish

Added subscriber: @WilliamReynish

Changed status from 'Needs Triage' to: 'Needs Developer To Reproduce'

Changed status from 'Needs Triage' to: 'Needs Developer To Reproduce'

When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel:

I cannot reproduce this. Here, when I open a Meta strip, it looks just like normal when there is no active strip (no strip properties are shown)

There is no Meta Strip options in the sidebar

This I don't understand. Yes there is no such panel, but why would there be? Doesn't look like a bug.

There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range.
There is no Back to Previous button:

The UI could show this more clearly, but it's not a bug and doesn't belong in the bug tracker.

>When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel: I cannot reproduce this. Here, when I open a Meta strip, it looks just like normal when there is no active strip (no strip properties are shown) >There is no Meta Strip options in the sidebar This I don't understand. Yes there is no such panel, but why would there be? Doesn't look like a bug. >There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range. >There is no Back to Previous button: The UI could show this more clearly, but it's not a bug and doesn't belong in the bug tracker.
Author

The UI could show this more clearly, but it's not a bug and doesn't belong in the bug tracker.

This valid issue was raised on RCS almost 4 years ago, so apparently RCS isn't the right place for it either: https://blender.community/c/rightclickselect/Qcbbbc/

> The UI could show this more clearly, but it's not a bug and doesn't belong in the bug tracker. This valid issue was raised on RCS almost 4 years ago, so apparently RCS isn't the right place for it either: https://blender.community/c/rightclickselect/Qcbbbc/

At that time there may not have been a context menu where you can find the edit meta strip operator. Now there is.

At that time there may not have been a context menu where you can find the edit meta strip operator. Now there is.

Added subscriber: @iss

Added subscriber: @iss

Changed status from 'Needs Developer To Reproduce' to: 'Archived'

Changed status from 'Needs Developer To Reproduce' to: 'Archived'
Richard Antalik self-assigned this 2020-02-24 18:40:31 +01:00

There are a couple of bugs/unfinished implementation of the Meta Strips in the Sequencer:

Always report one bug per report.

When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel:

Not really a bug - it works as expected.
You may say, that some strip should be active, not must be active, so it's feature request.

There is no Meta Strip options in the sidebar(like this):
There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range. Maybe this range should have a color so it is clearly distinct:

Same thing, a feature request.

AFAIK there is no "inside meta" flag which can be used in space_sequencer.py to show/not show such a button.

Technically you could do is_top_view = (C.sequences- [x] == C.scene.sequence_editor.sequences_all- [x]), but it's hacky

I am not saying, this can not be done better, but it's not something that restricts any functionality

>There are a couple of bugs/unfinished implementation of the Meta Strips in the Sequencer: Always report one bug per report. >When toggle to open the Meta strip, no active strip is selected and it breaks the sidebar panel: Not really a bug - it works as expected. You may say, that some strip should be active, not must be active, so it's feature request. >There is no Meta Strip options in the sidebar(like this): >There is not indication of being "inside" a Meta strip, other than a very subtle drawing of the Meta strip range. Maybe this range should have a color so it is clearly distinct: Same thing, a feature request. >AFAIK there is no "inside meta" flag which can be used in space_sequencer.py to show/not show such a button. Technically you could do `is_top_view = (C.sequences- [x] == C.scene.sequence_editor.sequences_all- [x])`, but it's hacky I am not saying, this can not be done better, but it's not something that restricts any functionality
Author

This report was linked to a patch, which cleaned up the polls giving the impression of a broken sidebar. It also exposed the mentioned meta strip functions. In the VSE chat I posted a suggestion on how to make the Meta Strip range more clear and with your line of code the "Return" button could be implemented. So all of these things could be solved, but I'll leave it up to you guys.
The patch: https://developer.blender.org/D6913

This report was linked to a patch, which cleaned up the polls giving the impression of a broken sidebar. It also exposed the mentioned meta strip functions. In the VSE chat I posted a suggestion on how to make the Meta Strip range more clear and with your line of code the "Return" button could be implemented. So all of these things could be solved, but I'll leave it up to you guys. The patch: https://developer.blender.org/D6913

@tintwotin No need for report if you are not fixing bug, just improving interface

@tintwotin No need for report if you are not fixing bug, just improving interface
Sign in to join this conversation.
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
3 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#74130
No description provided.