UI: Inhibit sleep/screensavers while active

master
jp9000 2015-09-12 19:25:06 -07:00
parent d78d0072a0
commit 274841860b
2 changed files with 6 additions and 0 deletions

View File

@ -941,6 +941,8 @@ void OBSBasic::OBSInit()
connect(ui->preview, &OBSQTDisplay::DisplayCreated, addDisplay);
sleepInhibitor = os_inhibit_sleep_create("OBS Video/audio");
os_inhibit_sleep_set_active(sleepInhibitor, true);
show();
}
@ -1193,6 +1195,9 @@ OBSBasic::~OBSBasic()
}
}
#endif
os_inhibit_sleep_set_active(sleepInhibitor, false);
os_inhibit_sleep_destroy(sleepInhibitor);
}
void OBSBasic::SaveProjectNow()

View File

@ -89,6 +89,7 @@ private:
QPointer<QTimer> cpuUsageTimer;
os_cpu_usage_info_t *cpuUsageInfo = nullptr;
os_inhibit_t *sleepInhibitor = nullptr;
OBSService service;
std::unique_ptr<BasicOutputHandler> outputHandler;