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>2021-07-26 13:55:43 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-07-26 13:57:48 +0300
commita0cba9fb9504e166020d697933f72fa2bb7b7c3d (patch)
tree9d65dac34f64f163499c13b38a92762382577921 /release
parentfaa65f151d9353f98012a3473f618b884e60d180 (diff)
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
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py4
1 files changed, 2 insertions, 2 deletions
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 = (