yolobs-studio/debian/patches/0006-Do-not-display-license-on-first-startup.patch
Sebastian Ramacher f343962e1e Refresh patches
2018-12-16 17:18:48 +01:00

22 lines
634 B
Diff

From: Chris Lamb <lamby@debian.org>
Date: Mon, 19 Feb 2018 21:32:07 +0100
Subject: Do not display license on first startup
---
UI/obs-app.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp
index 52b15a0..186128c 100644
--- a/UI/obs-app.cpp
+++ b/UI/obs-app.cpp
@@ -1216,8 +1216,7 @@ bool OBSApp::OBSInit()
{
ProfileScope("OBSApp::OBSInit");
- bool licenseAccepted = config_get_bool(globalConfig, "General",
- "LicenseAccepted");
+ bool licenseAccepted = true;
OBSLicenseAgreement agreement(nullptr);
if (licenseAccepted || agreement.exec() == QDialog::Accepted) {