From 81f7e361d290a595a40f5811422e03f7560ff9f3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 25 Sep 2011 02:49:46 +0000 Subject: make new rna variables more consistant with existing names. --- release/scripts/startup/bl_ui/properties_data_armature.py | 2 +- release/scripts/startup/bl_ui/properties_game.py | 4 ++-- release/scripts/startup/bl_ui/space_sequencer.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'release/scripts') diff --git a/release/scripts/startup/bl_ui/properties_data_armature.py b/release/scripts/startup/bl_ui/properties_data_armature.py index 61093abe814..e4744fdb04f 100644 --- a/release/scripts/startup/bl_ui/properties_data_armature.py +++ b/release/scripts/startup/bl_ui/properties_data_armature.py @@ -72,7 +72,7 @@ class DATA_PT_skeleton(ArmatureButtonsPanel, Panel): flow.prop(arm, "use_deform_preserve_volume", text="Quaternion") if context.scene.render.engine == "BLENDER_GAME": - layout.row().prop(arm, "vert_deformer", expand=True) + layout.row().prop(arm, "deform_method", expand=True) class DATA_PT_display(ArmatureButtonsPanel, Panel): diff --git a/release/scripts/startup/bl_ui/properties_game.py b/release/scripts/startup/bl_ui/properties_game.py index 26b95484b28..469c1e68706 100644 --- a/release/scripts/startup/bl_ui/properties_game.py +++ b/release/scripts/startup/bl_ui/properties_game.py @@ -209,14 +209,14 @@ class PHYSICS_PT_game_obstacles(PhysicsButtonsPanel, Panel): def draw_header(self, context): game = context.active_object.game - self.layout.prop(game, "create_obstacle", text="") + self.layout.prop(game, "use_obstacle_create", text="") def draw(self, context): layout = self.layout game = context.active_object.game - layout.active = game.create_obstacle + layout.active = game.use_obstacle_create row = layout.row() row.prop(game, "obstacle_radius", text="Radius") diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py index d711c37b8b5..cabd8356ad0 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -584,7 +584,7 @@ class SEQUENCER_PT_input(SequencerButtonsPanel, Panel): col = split.column() col.prop(strip, "filepath", text="") col.prop(strip, "mpeg_preseek", text="MPEG Preseek") - col.prop(strip, "streamindex", text="Stream Index") + col.prop(strip, "stream_index", text="Stream Index") # TODO, sound??? # end drawing filename -- cgit v1.2.3