Roy-043
Roy-043
@chennes: I do not compile myself, I'll have to wait for the weekly. So, from my side, please merge. Thanks @edwilliams16.
Thanks for the detailed analysis. It is indeed better to do this properly. I'll convert this PR to Draft for now. If I remember correctly there may even be a...
Result of the updated PR: 
The `Show this dialog when importing and exporting` option is now checked by default. Changing the other preferences does not necessarily make sense for other workflows where a DXF is...
Related: https://wiki.freecad.org/Std_TreeMultiDocument.
Your code makes assumptions that need not apply. A sketch can have any rotation, your code only works for sketches aligned with 3 standard planes.
I understand what you are saying, but the proposed solution has some obvious limitations. I don't think it is a 99% solution at all. For example a sketch created on...
One very simple way to solve this issue (for sketches only) is to create a realigned new object for each sketch in a temporary document and export that. This would...
Another problem: 1. Start FreeCAD. 2. Create a document. 3. Switch to the Draft WB. 4. Grid is visible. Grid button appears checked in the toolbar, but not in the...
This works (tested with the current dev version, not with the code of this PR): ``` action = Gui.Command.get("Draft_ToggleGrid").getAction()[0] action.setCheckable(True) action.setChecked(True) action.setChecked(False) ``` ``` OS: Windows 8 build 9600 Word...