Assigning shortcut to Sequencer data is wrongly 'hooked' the Scene instead of Scene's VSE data #67149

Open
opened 2019-07-17 23:54:29 +02:00 by Luiz Fernando · 13 comments

This error shows all the time when I right click on the viewscreen, and I have to right click and press ESC, so the message disappears and I keep working this way, right click, a message appears, ESC.
It suddenly started to happen and even deleting and downloading blender again, even with the other 2.8 version it happens.

Thank you, I love your work guys
Just trying to help

System Information
Operating system: Windows 10 Home, Core i7 - 7500U @ 2.70GHz, 8.00 GB RAM
Graphics card: AMD Radeon R7 M440 32GB, 4.00 Gbps

Blender Version
Broken: (example: 2.80, edbf15d3c0, master, 2018-11-28, as found on the splash screen)
Worked: (optional)

This error shows all the time when I right click on the viewscreen, and I have to right click and press ESC, so the message disappears and I keep working this way, right click, a message appears, ESC. It suddenly started to happen and even deleting and downloading blender again, even with the other 2.8 version it happens. Thank you, I love your work guys Just trying to help **System Information** Operating system: Windows 10 Home, Core i7 - 7500U @ 2.70GHz, 8.00 GB RAM Graphics card: AMD Radeon R7 M440 32GB, 4.00 Gbps **Blender Version** Broken: (example: 2.80, edbf15d3c044, master, 2018-11-28, as found on the splash screen) Worked: (optional)
Author

Added subscriber: @luiz.f.tanaka

Added subscriber: @luiz.f.tanaka

Added subscriber: @CMC

Added subscriber: @CMC

Please provide the exact Blender version and also the system-info.txt.
You can do that by going to the help menu. If you click on "Report a bug" the information about the Blender version should be filled out automatically. Also in the help menu you can save the System Info.
A screenshot which is showing the error message is also helpful.

Please provide the exact Blender version and also the system-info.txt. You can do that by going to the help menu. If you click on "Report a bug" the information about the Blender version should be filled out automatically. Also in the help menu you can save the System Info. A screenshot which is showing the error message is also helpful.

Added subscriber: @a.monti

Added subscriber: @a.monti

Can you please attach a screenshot of the error message you get?
Does this also happens when you load the default settings?

Can you please attach a screenshot of the error message you get? Does this also happens when you load the default settings?
Author

Alessio, I just loaded the default setting and now it is working very well, thank you very much!
But unfortunately, it changed the way I used to work on blender, but I'll try to configure it again, this time without messing up hahaha

By the way, follow bellow the information about the problem I was experiencing, it might be helpful somehow (I had filled out this request before realizing that loading the default setting would work)

Sorry man, here it is the right information

System Information
Operating system: Windows-10-10.0.17134 64 Bits
Graphics card: AMD Radeon R5 M445 Series ATI Technologies Inc. 4.5.13541 Core Profile Context 24.20.13019.1008

Blender Version
Broken: version: 2.80 (sub 74), branch: master, commit date: 2019-07-11 13:50, hash: 06312c6d2d
Worked: (optional)

Exact steps for others to reproduce the error
It happens all the time when I right-click on the viewport, I've also tried on blender 2.8 beta, the same problem happens, and I have to press ESC after right-clicking. But when I hold shift or ctrl or alt + right-click it doesn't show the message.

wm.py

system-info.txt

blender error.PNG

blender error2.png

Thanks a lot for helping me guys!!

Alessio, I just loaded the default setting and now it is working very well, thank you very much! But unfortunately, it changed the way I used to work on blender, but I'll try to configure it again, this time without messing up hahaha By the way, follow bellow the information about the problem I was experiencing, it might be helpful somehow (I had filled out this request before realizing that loading the default setting would work) Sorry man, here it is the right information **System Information** Operating system: Windows-10-10.0.17134 64 Bits Graphics card: AMD Radeon R5 M445 Series ATI Technologies Inc. 4.5.13541 Core Profile Context 24.20.13019.1008 **Blender Version** Broken: version: 2.80 (sub 74), branch: master, commit date: 2019-07-11 13:50, hash: `06312c6d2d` Worked: (optional) **Exact steps for others to reproduce the error** It happens all the time when I right-click on the viewport, I've also tried on blender 2.8 beta, the same problem happens, and I have to press ESC after right-clicking. But when I hold shift or ctrl or alt + right-click it doesn't show the message. [wm.py](https://archive.blender.org/developer/F7617342/wm.py) [system-info.txt](https://archive.blender.org/developer/F7617333/system-info.txt) ![blender error.PNG](https://archive.blender.org/developer/F7617334/blender_error.PNG) ![blender error2.png](https://archive.blender.org/developer/F7617337/blender_error2.png) Thanks a lot for helping me guys!!

Added subscriber: @brecht

Added subscriber: @brecht

@brecht probably the same as #65397 ?

@brecht probably the same as #65397 ?

Added subscriber: @iss

Added subscriber: @iss

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

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

While this should be resolved by acd98599ff, I am still able to "reproduce":

  • Open new Video Editing template
  • assign shortcut {key ctrl + shift +a} to Timeline header -> View->Cache -> Show Cache
  • hit {key ctrl + shift +a}

Results in

Error: Traceback (most recent call last):
  File "C:\Users\John\Desktop\blender-2.82-56ef761381ec-windows64\2.82\scripts\startup\bl_operators\wm.py", line 349, in execute
    if context_path_validate(base, data_path) is Ellipsis:
  File "C:\Users\John\Desktop\blender-2.82-56ef761381ec-windows64\2.82\scripts\startup\bl_operators\wm.py", line 84, in context_path_validate
    value = eval("context.%s" % data_path) if data_path else Ellipsis
  File "<string>", line 1, in <module>
AttributeError: 'Scene' object has no attribute 'show_cache'

while menu is drawn by

class SEQUENCER_MT_view_cache(Menu):
    bl_label = "Cache"

    def draw(self, context):
        layout = self.layout

        ed = context.scene.sequence_editor
        layout.prop(ed, "show_cache")
While this should be resolved by acd98599ff, I am still able to "reproduce": - Open new Video Editing template - assign shortcut {key ctrl + shift +a} to `Timeline header` -> `View`->`Cache` -> `Show Cache` - hit {key ctrl + shift +a} Results in ``` Error: Traceback (most recent call last): File "C:\Users\John\Desktop\blender-2.82-56ef761381ec-windows64\2.82\scripts\startup\bl_operators\wm.py", line 349, in execute if context_path_validate(base, data_path) is Ellipsis: File "C:\Users\John\Desktop\blender-2.82-56ef761381ec-windows64\2.82\scripts\startup\bl_operators\wm.py", line 84, in context_path_validate value = eval("context.%s" % data_path) if data_path else Ellipsis File "<string>", line 1, in <module> AttributeError: 'Scene' object has no attribute 'show_cache' ``` while menu is drawn by ``` class SEQUENCER_MT_view_cache(Menu): bl_label = "Cache" def draw(self, context): layout = self.layout ed = context.scene.sequence_editor layout.prop(ed, "show_cache") ```
Bastien Montagne changed title from Blender 2.8 bug to Assigning shortcut to Sequencer data is wrongly 'hooked' the Scene instead of Scene's VSE data 2020-01-20 17:53:40 +01:00

Added subscriber: @mont29

Added subscriber: @mont29

@iss acd98599ff fixed a similar issue, but it did not affect the area at stake in this report.

@iss acd98599ff fixed a similar issue, but it did not affect the area at stake in this report.
Philipp Oeser removed the
Interest
VFX & Video
label 2023-02-10 09:32:11 +01:00
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
5 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#67149
No description provided.