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.
This commit is contained in:
Richard Antalik 2022-06-13 22:31:44 +02:00
parent afde12e066
commit 77b34a00f9
Notes: blender-bot 2023-02-14 06:17:14 +01:00
Referenced by issue #97987, VSE: keyframe button affect only for X mirror and ignore Y mirror
1 changed files with 3 additions and 4 deletions

View File

@ -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):