Commit: 77b34a00f96ed0dd5accf3d1350f05332b443019
Author: Richard Antalik
Date: Mon Jun 13 22:31:44 2022 +0200
Branches: master
https://developer.blender.org/rB77b34a00f96ed0dd5accf3d1350f05332b443019
Fix T97987: Can not keyframe strip mirror in Y axis
Property shared row with toggle for mirror in X axis, so clicking on
decorator added only keyframe for X axis toggle.
===================================================================
M release/scripts/startup/bl_ui/space_sequencer.py
===================================================================
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py
b/release/scripts/startup/bl_ui/space_sequencer.py
index 84725d9e781..2db30ac1450 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -2087,10 +2087,9 @@ class
SEQUENCER_PT_adjust_transform(SequencerButtonsPanel, Panel):
col = layout.column(align=True)
col.prop(strip.transform, "origin")
- row = layout.row(heading="Mirror")
- sub = row.row(align=True)
- sub.prop(strip, "use_flip_x", text="X", toggle=True)
- sub.prop(strip, "use_flip_y", text="Y", toggle=True)
+ col = layout.column(heading="Mirror", align=True)
+ col.prop(strip, "use_flip_x", text="X", toggle=True)
+ col.prop(strip, "use_flip_y", text="Y", toggle=True)
class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, Panel):
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs