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:
authorWilliam Reynish <billrey@me.com>2019-06-27 12:15:56 +0300
committerWilliam Reynish <billrey@me.com>2019-06-27 12:15:56 +0300
commit1c60f30d0434cad528c1e4bf28de4460788deab9 (patch)
tree6f67d35456b67f6e60fc5212e79854f6d1125142 /release/scripts/startup/bl_ui/space_sequencer.py
parentc93af8529dfec9513de3bfcead9d15fa0eeb9a81 (diff)
Fix: Text Location lost X/Y text
Use PROP_XYZ instead, and user Slider=True to make them display as sliders in the UI
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 884d68ec850..1f67c9b12cf 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1054,7 +1054,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
col.prop(strip, "align_x", text="Horizontal")
col.prop(strip, "align_y", text="Vertical")
row = col.row(align=True)
- row.prop(strip, "location", text="Location")
+ row.prop(strip, "location", text="Location", slider=True)
col.prop(strip, "wrap_width")
layout.operator("sequencer.export_subtitles", text="Export Subtitles", icon='EXPORT')