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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-15 12:53:02 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-15 12:53:02 +0300
commit957baf7d6a711daee2391b2f912ff3852169ad48 (patch)
tree57676e476526b0e6a43386d39a20ec2ed46490b4 /release/scripts/io/export_x3d.py
parent38298d2c2215ca4c21f9b9cfa1f46b1ba126c2fe (diff)
Inline tooltips and descriptions of export/import
Random fixes and tweaks in names and tooltips
Diffstat (limited to 'release/scripts/io/export_x3d.py')
-rw-r--r--release/scripts/io/export_x3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py
index be648ddb11a..6eba12e3279 100644
--- a/release/scripts/io/export_x3d.py
+++ b/release/scripts/io/export_x3d.py
@@ -1229,9 +1229,9 @@ class ExportX3D(bpy.types.Operator):
path = StringProperty(name="File Path", description="File path used for exporting the X3D file", maxlen= 1024, default= "")
check_existing = BoolProperty(name="Check Existing", description="Check and warn on overwriting existing files", default=True, options={'HIDDEN'})
- apply_modifiers = BoolProperty(name="Apply Modifiers", description="Use transformed mesh data from each object.", default=True)
+ apply_modifiers = BoolProperty(name="Apply Modifiers", description="Use transformed mesh data from each object", default=True)
triangulate = BoolProperty(name="Triangulate", description="Triangulate quads.", default=False)
- compress = BoolProperty(name="Compress", description="GZip the resulting file, requires a full python install.", default=False)
+ compress = BoolProperty(name="Compress", description="GZip the resulting file, requires a full python install", default=False)
def execute(self, context):
x3d_export(self.properties.path, context, self.properties.apply_modifiers, self.properties.triangulate, self.properties.compress)
@@ -1245,7 +1245,7 @@ class ExportX3D(bpy.types.Operator):
def menu_func(self, context):
default_path = bpy.data.filename.replace(".blend", ".x3d")
- self.layout.operator(ExportX3D.bl_idname, text="X3D Extensible 3D (.x3d)...").path = default_path
+ self.layout.operator(ExportX3D.bl_idname, text="X3D Extensible 3D (.x3d)").path = default_path
def register():