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:
authorRichard Antalik <richardantalik@gmail.com>2022-06-13 23:31:44 +0300
committerRichard Antalik <richardantalik@gmail.com>2022-06-13 23:35:36 +0300
commit77b34a00f96ed0dd5accf3d1350f05332b443019 (patch)
treeb005301c0eea078ed6e044c2c360a1139e0a7a20
parentafde12e066e2e38f0df4151e6d1e6e1c61bc6c94 (diff)
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.
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py7
1 files changed, 3 insertions, 4 deletions
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):