Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-07-03 16:53:44 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-07-03 16:53:44 +0300
commit405e6c6cc93cb8fafe33f9162c1832caf5e129f3 (patch)
treef42b827f2a155e311b1d6c2afe5bbdfafdb48fb7 /release
parent19ff145e666633cebeae97cf985c968d39044215 (diff)
Fix T78555: GPencil bake animation operator loose frame setting
The values were reset for each run
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/gpencil_mesh_bake.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_operators/gpencil_mesh_bake.py b/release/scripts/startup/bl_operators/gpencil_mesh_bake.py
index ae75fa0e4d9..ec7ff970537 100644
--- a/release/scripts/startup/bl_operators/gpencil_mesh_bake.py
+++ b/release/scripts/startup/bl_operators/gpencil_mesh_bake.py
@@ -148,11 +148,6 @@ class GPENCIL_OT_mesh_bake(Operator):
return {'FINISHED'}
def invoke(self, context, _event):
- scene = context.scene
- self.frame_start = scene.frame_start
- self.frame_end = scene.frame_end
- self.frame_target = scene.frame_start
-
wm = context.window_manager
return wm.invoke_props_dialog(self)