patch from oxben (Benjamin)

* fixes two typos in the material buttons: "Recieve" -> "Receive"
* adds a missing preference in the User Preferences view: "Rotate Around Selected"
This commit is contained in:
Campbell Barton 2009-07-18 04:09:23 +00:00
parent 4fb20358e4
commit ffdd2d12ce
2 changed files with 3 additions and 2 deletions

@ -175,8 +175,8 @@ class MATERIAL_PT_shadows(MaterialButtonsPanel):
split = layout.split()
sub = split.column()
sub.itemR(mat, "shadows", text="Recieve")
sub.itemR(mat, "transparent_shadows", text="Recieve Transparent")
sub.itemR(mat, "shadows", text="Receive")
sub.itemR(mat, "transparent_shadows", text="Receive Transparent")
sub.itemR(mat, "only_shadow", text="Shadows Only")
sub.itemR(mat, "cast_shadows_only", text="Cast Only")
sub.itemR(mat, "shadow_casting_alpha", text="Casting Alpha", slider=True)

@ -165,6 +165,7 @@ class INFO_PT_view(bpy.types.Panel):
colsplitcol.itemR(view, "auto_depth")
colsplitcol.itemR(view, "global_pivot")
colsplitcol.itemR(view, "zoom_to_mouse")
colsplitcol.itemR(view, "rotate_around_selection")
colsplitcol.itemL(text="Zoom Style:")
row = colsplitcol.row()
row.itemR(view, "viewport_zoom_style", expand=True)