diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-25 20:35:03 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-25 20:35:03 (GMT) |
commit | dc1450e47ff30b2b137c0fb65c5e9798f098a419 (patch) | |
tree | 581f242f50a5a524a61c0e64ff5b1764b8466070 /openscad.cc | |
parent | a201b851e68e75477e0db644d71a0d1fd7608cdd (diff) |
Marius Kintel:
Some patches for MacOS X
Set text editor font to QFont::TypeWriter
git-svn-id: http://svn.clifford.at/openscad/trunk@120 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'openscad.cc')
-rw-r--r-- | openscad.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openscad.cc b/openscad.cc index 4d67b98..8dd7650 100644 --- a/openscad.cc +++ b/openscad.cc @@ -69,6 +69,9 @@ int main(int argc, char **argv) bool useGUI = true; #endif QApplication app(argc, argv, useGUI); +#ifdef __APPLE__ + app.setLibraryPaths(QStringList(app.applicationDirPath() + "/../PlugIns")); +#endif const char *filename = NULL; const char *stl_output_file = NULL; |