chiark / gitweb /
Revert the multiprocessing, as multiprocessing with wxPython does not work for MacOS
[cura.git] / Cura / cura.py
index 3008bc8022259c9dfa0e254f11e2a52c5897ab50..07b901c1c9b4999d055fe7334f303a253b47118a 100644 (file)
@@ -11,7 +11,6 @@ The slicing code is the same as Skeinforge. But the UI has been revamped to be..
 from __future__ import absolute_import
 
 from optparse import OptionParser
-from multiprocessing import freeze_support
 
 from Cura.util import profile
 
@@ -76,5 +75,4 @@ def main():
                app.CuraApp().MainLoop()
 
 if __name__ == '__main__':
-       freeze_support()
        main()