diff options
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 0974a11..0cd7455 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -45,6 +45,7 @@ #include <getopt.h> #ifdef Q_WS_MAC #include "EventFilter.h" +#include "AppleEvents.h" #endif static void help(const char *progname) @@ -247,6 +248,10 @@ int main(int argc, char **argv) } else if (useGUI) { +#ifdef Q_WS_MAC + installAppleEventHandlers(); +#endif + // turn on anti-aliasing QGLFormat f; f.setSampleBuffers(true); |