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

« back to all changes in this revision

Viewing changes to release/scripts/startup/bl_ui/properties_object.py

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-05-12 20:02:22 UTC
  • mfrom: (14.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120512200222-lznjs2cxzaq96wua
Tags: 2.63a-1
* New upstream bugfix release
  + debian/patches/: re-worked since source code changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
        layout = self.layout
300
300
 
301
301
        ob = context.object
302
 
 
303
 
        self.draw_settings(context, ob.animation_visualisation)
304
 
 
305
 
        layout.separator()
306
 
 
307
 
        row = layout.row()
308
 
        row.operator("object.paths_calculate", text="Calculate Paths")
309
 
        row.operator("object.paths_clear", text="Clear Paths")
 
302
        avs = ob.animation_visualisation
 
303
        mpath = ob.motion_path
 
304
        
 
305
        self.draw_settings(context, avs, mpath)
310
306
 
311
307
 
312
308
class OBJECT_PT_onion_skinning(OnionSkinButtonsPanel):  # , Panel): # inherit from panel when ready