Hole milling is functional. Solves issue #74.

This commit is contained in:
Juan Pablo Caram
2014-12-09 21:30:01 -05:00
parent fe2b4c7478
commit f68cffcfb2
3 changed files with 26 additions and 6 deletions

View File

@@ -84,9 +84,11 @@ class App(QtCore.QObject):
App.log.debug("Win32!")
self.data_path = shell.SHGetFolderPath(0, shellcon.CSIDL_APPDATA, None, 0) + \
'/FlatCAM'
self.os = 'windows'
else: # Linux/Unix/MacOS
self.data_path = os.path.expanduser('~') + \
'/.FlatCAM'
self.os = 'unix'
###############################
### Setup folders and files ###