Commit: a0cba9fb9504e166020d697933f72fa2bb7b7c3d Author: Richard Antalik Date: Mon Jul 26 12:55:43 2021 +0200 Branches: master https://developer.blender.org/rBa0cba9fb9504e166020d697933f72fa2bb7b7c3d
VSE: Fix truncated label Label for snapping current frame to strips was cut off and not very readable. Reviewed By: HooglyBoogly Differential Revision: https://developer.blender.org/D11951 =================================================================== 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 47b04f9cdbc..c9b38fbf095 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -2294,8 +2294,8 @@ class SEQUENCER_PT_snapping(Panel): col.prop(sequencer_tool_settings, "snap_ignore_muted", text="Muted Strips") col.prop(sequencer_tool_settings, "snap_ignore_sound", text="Sound Strips") - col = layout.column() - col.prop(sequencer_tool_settings, "use_snap_current_frame_to_strips") + col = layout.column(heading="Current Frame", align=True) + col.prop(sequencer_tool_settings, "use_snap_current_frame_to_strips", text="Snap to Strips") classes = ( _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
