Closed bazza2jw closed 9 months ago
To fix exception in dual_view.py when Dual is clicked, make the following changes at lines 62 and 80
Change: bpy.ops.screen.region_flip(c)
To: with context.temp_override(**c): bpy.ops.screen.region_flip()
This is a result of changes to the Blender API.
Thanks. I couldn't get that to work. But did something else.
To fix exception in dual_view.py when Dual is clicked, make the following changes at lines 62 and 80
Change: bpy.ops.screen.region_flip(c)
To: with context.temp_override(**c): bpy.ops.screen.region_flip()
This is a result of changes to the Blender API.