UI: Inhibit sleep/screensavers while active

This commit is contained in:
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()