Skip to content

Commit

Permalink
Shorten title of coordinate precision setting
Browse files Browse the repository at this point in the history
It wouldn't fit in the window otherwise and get elided.
  • Loading branch information
Ghostkeeper committed Oct 2, 2020
1 parent 2aaee99 commit 07071b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_mesh_3mf/export_3mf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Export3MF(bpy.types.Operator, bpy_extras.io_utils.ExportHelper):
use_selection: bpy.props.BoolProperty(name="Selection Only", description="Export selected objects only.", default=False)
global_scale: bpy.props.FloatProperty(name="Scale", default=1.0, soft_min=0.001, soft_max=1000.0, min=1e-6, max=1e6)
use_mesh_modifiers: bpy.props.BoolProperty(name="Apply Modifiers", description="Apply the modifiers before saving.", default=True)
coordinate_precision: bpy.props.IntProperty(name="Coordinate Precision", description="The number of decimal digits to use in coordinates in the file.", default=4, min=0, max=12)
coordinate_precision: bpy.props.IntProperty(name="Precision", description="The number of decimal digits to use in coordinates in the file.", default=4, min=0, max=12)

def __init__(self):
"""
Expand Down

0 comments on commit 07071b4

Please sign in to comment.