Source: obs-studio
Version: 19.0.3+dfsg1-1
Severity: wishlist
Tags: patch

Hi,

obs-studio requires you to accept the terms of the GPL when starting
the program for the first time:

  https://i.imgur.com/RzEUuSJ.jpg

This, IMHO, isn't very "Debian".

Patch attached. (If you apply it, you can drop 0001-Use-common-license.patch)


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb, Debian Project Leader
     `. `'`      la...@debian.org / chris-lamb.co.uk
       `-
diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp
index 01db714..6e4a890 100644
--- a/UI/obs-app.cpp
+++ b/UI/obs-app.cpp
@@ -923,8 +923,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) {

Reply via email to