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-19 21:46:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-19 21:46:00 +0400
commitbea1c4fb132a275dd04b59b40cc5881ca4b9f6e6 (patch)
treee59fe5738174ba21c62e877bb4d00ac332b269c7 /release
parentfedde2f8e33bfdb7e8e8faea9c8f09cf7c652dad (diff)
misc rna renaming.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_metaball.py4
-rw-r--r--release/scripts/ui/space_view3d.py10
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py12
3 files changed, 13 insertions, 13 deletions
diff --git a/release/scripts/ui/properties_data_metaball.py b/release/scripts/ui/properties_data_metaball.py
index ebe21a6e623..83e5e642d0e 100644
--- a/release/scripts/ui/properties_data_metaball.py
+++ b/release/scripts/ui/properties_data_metaball.py
@@ -64,8 +64,8 @@ class DATA_PT_metaball(DataButtonsPanel, bpy.types.Panel):
col = split.column()
col.label(text="Resolution:")
sub = col.column(align=True)
- sub.prop(mball, "wire_size", text="View")
- sub.prop(mball, "render_size", text="Render")
+ sub.prop(mball, "resolution", text="View")
+ sub.prop(mball, "render_resolution", text="Render")
col = split.column()
col.label(text="Settings:")
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 36502564e1f..2dc4b9cfabb 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1011,9 +1011,9 @@ class VIEW3D_MT_sculpt(bpy.types.Menu):
sculpt = tool_settings.sculpt
brush = tool_settings.sculpt.brush
- layout.prop(sculpt, "symmetry_x")
- layout.prop(sculpt, "symmetry_y")
- layout.prop(sculpt, "symmetry_z")
+ layout.prop(sculpt, "use_symmetry_x")
+ layout.prop(sculpt, "use_symmetry_y")
+ layout.prop(sculpt, "use_symmetry_z")
layout.separator()
layout.prop(sculpt, "lock_x")
layout.prop(sculpt, "lock_y")
@@ -1038,7 +1038,7 @@ class VIEW3D_MT_sculpt(bpy.types.Menu):
layout.operator("sculpt.set_persistent_base")
layout.separator()
- layout.prop(sculpt, "use_openmp", text="Threaded Sculpt")
+ layout.prop(sculpt, "use_threaded", text="Threaded Sculpt")
layout.prop(sculpt, "show_brush")
# TODO, make availabel from paint menu!
@@ -2063,7 +2063,7 @@ class VIEW3D_PT_view3d_display(bpy.types.Panel):
row.prop(region, "show_sync_view")
row = col.row()
row.enabled = region.lock_rotation and region.show_sync_view
- row.prop(region, "box_clip")
+ row.prop(region, "use_box_clip")
class VIEW3D_PT_view3d_meshdisplay(bpy.types.Panel):
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 4ff90c53d3c..f99044281b5 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -998,7 +998,7 @@ class VIEW3D_PT_sculpt_options(PaintPanel, bpy.types.Panel):
col = split.column()
- col.prop(sculpt, "use_openmp", text="Threaded Sculpt")
+ col.prop(sculpt, "use_threaded", text="Threaded Sculpt")
col.prop(sculpt, "show_low_resolution")
col.prop(sculpt, "show_brush")
@@ -1037,13 +1037,13 @@ class VIEW3D_PT_sculpt_symmetry(PaintPanel, bpy.types.Panel):
col = split.column()
col.label(text="Mirror:")
- col.prop(sculpt, "symmetry_x", text="X")
- col.prop(sculpt, "symmetry_y", text="Y")
- col.prop(sculpt, "symmetry_z", text="Z")
+ col.prop(sculpt, "use_symmetry_x", text="X")
+ col.prop(sculpt, "use_symmetry_y", text="Y")
+ col.prop(sculpt, "use_symmetry_z", text="Z")
col = split.column()
- col.prop(sculpt, "radial_symm", text="Radial")
+ col.prop(sculpt, "radial_symmetry", text="Radial")
col = layout.column()
@@ -1196,7 +1196,7 @@ class VIEW3D_PT_tools_projectpaint(View3DPanel, bpy.types.Panel):
sub = col.column()
sub.active = use_projection
sub.prop(ipaint, "use_occlude")
- sub.prop(ipaint, "use_backface_cull")
+ sub.prop(ipaint, "use_backface_culling")
split = layout.split()