Skip to content

Commit

Permalink
Draft: builtin C++ DXF importer is now the default
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jun 30, 2016
1 parent 796d0c9 commit 3a25e05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Draft/Resources/ui/preferences-dxf.ui
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Draft/importDXF.py
Expand Up @@ -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)
Expand Down

0 comments on commit 3a25e05

Please sign in to comment.