handle SpaceType and UserPref popups

This commit is contained in:
Xiao Xiangquan
2011-06-20 10:07:46 +00:00
parent 558d549aeb
commit 9a2f36b50f
49 changed files with 946 additions and 815 deletions

View File

@@ -20,6 +20,7 @@
import bpy
from bpy.props import StringProperty, BoolProperty, EnumProperty, IntProperty
from blf import gettext as _
class SelectPattern(bpy.types.Operator):
@@ -412,7 +413,7 @@ class ShapeTransfer(bpy.types.Operator):
class JoinUVs(bpy.types.Operator):
'''Copy UV Layout to objects with matching geometry'''
bl_idname = "object.join_uvs"
bl_label = "Join as UVs"
bl_label = _("Join as UVs")
@classmethod
def poll(cls, context):
@@ -470,7 +471,7 @@ class JoinUVs(bpy.types.Operator):
class MakeDupliFace(bpy.types.Operator):
'''Make linked objects into dupli-faces'''
bl_idname = "object.make_dupli_face"
bl_label = "Make Dupli-Face"
bl_label = _("Make Dupli-Face")
@classmethod
def poll(cls, context):