Browse Source

Tell MacOS to not push us to nap

QGC4.4
Lorenz Meier 11 years ago
parent
commit
b952a4739c
  1. 7
      src/main.cc

7
src/main.cc

@ -83,7 +83,12 @@ int WindowsCrtReportHook(int reportType, char* message, int* returnValue) @@ -83,7 +83,12 @@ int WindowsCrtReportHook(int reportType, char* message, int* returnValue)
int main(int argc, char *argv[])
{
// install the message handler
// Prevent Apple's app nap from screwing us over
// tip: the domain can be cross-checked on the command line with <defaults domains>
QProcess::execute("defaults write org.qgroundcontrol.qgroundcontrol NSAppSleepDisabled -bool YES");
// install the message handler
#ifdef Q_OS_WIN
qInstallMsgHandler( msgHandler );
#endif

Loading…
Cancel
Save