~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to release/scripts/startup/bl_operators/sequencer.py

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
 
127
127
    @classmethod
128
128
    def poll(cls, context):
129
 
        if context.scene and context.scene.sequence_editor:
130
 
            return True
131
 
        else:
132
 
            return False
 
129
        return (context.scene and context.scene.sequence_editor)
133
130
 
134
131
    def execute(self, context):
135
132
        for s in context.scene.sequence_editor.sequences_all: