disable apply modifiers by default in export flag

This commit is contained in:
Juan Linietsky 2015-04-22 18:20:29 -03:00
parent 66c71c21df
commit 1721ef17d6
2 changed files with 2 additions and 2 deletions

View file

@ -114,7 +114,7 @@ void RichTextLabel::_process_line(int &y, int p_width, int p_line, ProcessMode p
line++;\ line++;\
if (line < l.offset_caches.size())\ if (line < l.offset_caches.size())\
line_ofs=l.offset_caches[line];\ line_ofs=l.offset_caches[line];\
wofs=margin;\ wofs=margin;\
if (align!=ALIGN_FILL)\ if (align!=ALIGN_FILL)\
wofs+=line_ofs;\ wofs+=line_ofs;\
} else {\ } else {\

View file

@ -81,7 +81,7 @@ class ExportDAE(bpy.types.Operator, ExportHelper):
use_mesh_modifiers = BoolProperty( use_mesh_modifiers = BoolProperty(
name="Apply Modifiers", name="Apply Modifiers",
description="Apply modifiers to mesh objects (on a copy!).", description="Apply modifiers to mesh objects (on a copy!).",
default=True, default=False,
) )
use_tangent_arrays = BoolProperty( use_tangent_arrays = BoolProperty(
name="Tangent Arrays", name="Tangent Arrays",