Skip to content

Commit

Permalink
update for rna changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ideasman42 committed Aug 17, 2010
1 parent ae93f3e commit d08ba14
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion io_anim_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class CameraExporter(bpy.types.Operator):
default=True)

def execute(self, context):
writeCameras(context, self.properties.filepath, self.properties.frame_start, self.properties.frame_end, self.properties.only_selected)
writeCameras(context, self.properties.filepath, self.properties.frame_start, self.properties.frame_end, self.properties.show_only_selected)
return {'FINISHED'}

def invoke(self, context, event):
Expand Down
2 changes: 1 addition & 1 deletion io_import_scene_mhx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@ def parsePoseBone(pbones, ob, args, tokens):
print("pb", bpy.context.active_pose_bone)
print("md", bpy.context.mode)
exec(expr)
print("alive")
print("show_alive")
elif key == 'ik_dof':
parseArray(pb, ["ik_dof_x", "ik_dof_y", "ik_dof_z"], val)
elif key == 'ik_limit':
Expand Down
4 changes: 2 additions & 2 deletions mesh_surface_sketch.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,8 +771,8 @@ def execute(self, context):
curve_crv = ob_gp_strokes.data
bpy.ops.curve.spline_type_set(type="BEZIER")
bpy.ops.curve.handle_type_set(type="AUTOMATIC")
bpy.data.curves[curve_crv.name].draw_handles = False
bpy.data.curves[curve_crv.name].draw_normals = False
bpy.data.curves[curve_crv.name].show_handles = False
bpy.data.curves[curve_crv.name].show_normal_face = False


def invoke (self, context, event):
Expand Down

0 comments on commit d08ba14

Please sign in to comment.