Browse Source

Tell MacOS to not push us to nap

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

5
src/main.cc

@ -83,6 +83,11 @@ int WindowsCrtReportHook(int reportType, char* message, int* returnValue) @@ -83,6 +83,11 @@ int WindowsCrtReportHook(int reportType, char* message, int* returnValue)
int main(int argc, char *argv[])
{
// 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 );

Loading…
Cancel
Save