Draft: builtin C++ DXF importer is now the default

This commit is contained in:
Yorik van Havre 2016-06-30 15:26:07 -03:00
parent 796d0c9f7f
commit 3a25e058df
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
<string>Use legacy python importer</string>
</property>
<property name="checked">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="prefEntry" stdset="0">
<cstring>dxfUseLegacyImporter</cstring>

View File

@ -2041,7 +2041,7 @@ def readPreferences():
dxfGetColors = p.GetBool("dxfGetOriginalColors",False)
dxfUseDraftVisGroups = p.GetBool("dxfUseDraftVisGroups",False)
dxfFillMode = p.GetBool("fillmode",True)
dxfUseLegacyImporter = p.GetBool("dxfUseLegacyImporter",True)
dxfUseLegacyImporter = p.GetBool("dxfUseLegacyImporter",False)
dxfBrightBackground = isBrightBackground()
dxfDefaultColor = getColor()
dxfExportBlocks = p.GetBool("dxfExportBlocks",True)