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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2017-05-10 06:52:31 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2017-05-11 06:53:03 +0300
commitc95a8bc68fb9c5b658693fa3a0478cc305295c40 (patch)
treecd88d015fddbff9b169e8c12d1ee77dbdeff70cf /release
parent58a0c275464605ccff18a56c4d82b619df069e91 (diff)
UI: Follow up on recent VSE work
Fix a few more columns that should be rows
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index f2deb127a08..e03c41a7ad9 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -642,8 +642,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
col.prop(strip, "translation_unit")
col = layout.column(align=True)
col.label(text="Position:")
- col.prop(strip, "translate_start_x", text="X")
- col.prop(strip, "translate_start_y", text="Y")
+ row = col.row(align=True)
+ row.prop(strip, "translate_start_x", text="X")
+ row.prop(strip, "translate_start_y", text="Y")
layout.separator()
@@ -655,8 +656,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
else:
col = layout.column(align=True)
col.label(text="Scale:")
- col.prop(strip, "scale_start_x", text="X")
- col.prop(strip, "scale_start_y", text="Y")
+ row = col.row(align=True)
+ row.prop(strip, "scale_start_x", text="X")
+ row.prop(strip, "scale_start_y", text="Y")
layout.separator()
@@ -714,7 +716,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
col.prop(strip, "align_x")
col.prop(strip, "align_y")
- col.prop(strip, "location")
+ col.label("Location")
+ row = col.row()
+ row.prop(strip, "location", text="")
col.prop(strip, "wrap_width")
layout.operator("sequencer.export_subtitles")
@@ -726,8 +730,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
if not strip.use_default_fade:
col.prop(strip, "effect_fader", text="Effect fader")
elif strip.type == 'GAUSSIAN_BLUR':
- col.prop(strip, "size_x")
- col.prop(strip, "size_y")
+ row = col.row(align=True)
+ row.prop(strip, "size_x")
+ row.prop(strip, "size_y")
class SEQUENCER_PT_input(SequencerButtonsPanel, Panel):