Fix #118263: VSE: Expose remove all gaps in UI

Add `gap_remove` operator with `all` property true in `Strips >
Transform` menu

Pull Request: https://projects.blender.org/blender/blender/pulls/131485
This commit is contained in:
Pratik Borhade
2024-12-07 10:22:30 +01:00
committed by Pratik Borhade
parent a6c832a67d
commit 50d67099fb

View File

@@ -885,6 +885,7 @@ class SEQUENCER_MT_strip_transform(Menu):
layout.separator()
layout.operator("sequencer.gap_remove").all = False
layout.operator("sequencer.gap_remove", text="Remove Gaps (All)").all = True
layout.operator("sequencer.gap_insert")