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-04-28 11:25:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-28 11:25:39 +0400
commit2d4d820b976b16c536af520378bdbd33d70b95b6 (patch)
tree02fc1a6ff0679f0398bfeafef253cd31ded78a37 /release/scripts/ui/space_view3d.py
parent68e68af102a698d8b18cfb5326565346009a1ee7 (diff)
3dview --> view3d, patch by Jonathan Smith with small corrections and changes.
Diffstat (limited to 'release/scripts/ui/space_view3d.py')
-rw-r--r--release/scripts/ui/space_view3d.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 36ccd47332e..f5ccfe4e43e 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1832,7 +1832,7 @@ class VIEW3D_MT_edit_armature_roll(bpy.types.Menu):
# ********** Panel **********
-class VIEW3D_PT_3dview_properties(bpy.types.Panel):
+class VIEW3D_PT_view3d_properties(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "View"
@@ -1867,7 +1867,7 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel):
layout.column().prop(view, "cursor_location")
-class VIEW3D_PT_3dview_name(bpy.types.Panel):
+class VIEW3D_PT_view3d_name(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "Item"
@@ -1891,7 +1891,7 @@ class VIEW3D_PT_3dview_name(bpy.types.Panel):
row.prop(bone, "name", text="")
-class VIEW3D_PT_3dview_display(bpy.types.Panel):
+class VIEW3D_PT_view3d_display(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "Display"
@@ -1959,7 +1959,7 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel):
row.prop(region, "box_clip")
-class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel):
+class VIEW3D_PT_view3d_meshdisplay(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "Mesh Display"
@@ -1995,7 +1995,7 @@ class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel):
col.prop(mesh, "draw_face_area")
-class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel):
+class VIEW3D_PT_view3d_curvedisplay(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "Curve Display"
@@ -2263,11 +2263,11 @@ classes = [
VIEW3D_MT_armature_specials, # Only as a menu for keybindings
# Panels
- VIEW3D_PT_3dview_properties,
- VIEW3D_PT_3dview_display,
- VIEW3D_PT_3dview_name,
- VIEW3D_PT_3dview_meshdisplay,
- VIEW3D_PT_3dview_curvedisplay,
+ VIEW3D_PT_view3d_properties,
+ VIEW3D_PT_view3d_display,
+ VIEW3D_PT_view3d_name,
+ VIEW3D_PT_view3d_meshdisplay,
+ VIEW3D_PT_view3d_curvedisplay,
VIEW3D_PT_background_image,
VIEW3D_PT_transform_orientations,
VIEW3D_PT_etch_a_ton,