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:
authorAndrea Weikert <elubie@gmx.net>2010-04-18 22:46:16 +0400
committerAndrea Weikert <elubie@gmx.net>2010-04-18 22:46:16 +0400
commitcf4d63c09d41a0edba65611a5a6abd21966c0656 (patch)
tree298f8929ac2c348680ea53bd03c1bd94a2fb2745 /release/scripts
parent4d1903870af3985740ce8daa5ae91af20334c2a9 (diff)
== sequencer ==
* new icon for split view (at least temporary) * icon buttons in header rather than popup menus for better efficiency (can easily be changed in python UI script again)
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_sequencer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index eb0b7374895..6d8a31cd539 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -50,10 +50,10 @@ class SEQUENCER_HT_header(bpy.types.Header):
sub.menu("SEQUENCER_MT_add")
sub.menu("SEQUENCER_MT_strip")
- layout.prop(st, "view_type", text="")
+ layout.prop(st, "view_type", expand=True, text="")
if (st.view_type == 'PREVIEW') or (st.view_type == 'SEQUENCER_PREVIEW'):
- layout.prop(st, "display_mode", text="")
+ layout.prop(st, "display_mode", expand=True, text="")
if (st.view_type == 'SEQUENCER'):
row = layout.row(align=True)