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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-18 11:14:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-18 11:14:10 +0400
commit7da5d9faec9f6ad170c5c77fe9b59deba6a2acab (patch)
tree77b65c193c362a2cb176a3283a7f05aaafb744db /release/scripts/ui/space_sequencer.py
parent54e6ea70c03330a1e083ded36053ab4140880af3 (diff)
rna renaming, still only adjusting properties that wont be animated (at least its very unlikely).
Diffstat (limited to 'release/scripts/ui/space_sequencer.py')
-rw-r--r--release/scripts/ui/space_sequencer.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index 582384660e0..8f8393051a3 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -452,10 +452,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy.types.Panel):
sub = row.row()
sub.scale_x = 2.0
- if not context.screen.animation_playing:
- sub.operator("screen.animation_play", text="", icon='PLAY')
- else:
- sub.operator("screen.animation_play", text="", icon='PAUSE')
+ sub.operator("screen.animation_play", text="", icon='PAUSE' if context.screen.is_animation_playing else 'PLAY')
row.label("Cut To")
for i in range(1, strip.channel):
@@ -620,7 +617,7 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel, bpy.types.Panel):
else:
row.operator("sound.pack", icon='UGLYPACKAGE', text="Pack")
- row.prop(strip.sound, "caching")
+ row.prop(strip.sound, "use_memory_cache")
layout.prop(strip, "volume")
layout.prop(strip, "attenuation")