Activate OSD signals on Linux

This commit is contained in:
wmayer
2013-06-12 23:15:53 +02:00
parent edab82f119
commit 4f37cce5fc
2 changed files with 4 additions and 3 deletions

View File

@@ -13,6 +13,7 @@
#ifndef _PreComp_
# include <Python.h>
# include <Interface_Static.hxx>
# include <OSD.hxx>
# include <sstream>
#endif
@@ -101,6 +102,9 @@ void PartExport initPart()
App::GetApplication().addImportType("STEP with colors (*.step *.stp)","ImportGui");
App::GetApplication().addExportType("STEP with colors (*.step *.stp)","ImportGui");
#endif
#endif
#if defined(FC_OS_LINUX)
OSD::SetSignal();
#endif
PyObject* partModule = Py_InitModule3("Part", Part_methods, module_part_doc); /* mod name, table ptr */