summaryrefslogtreecommitdiff
path: root/src/lib/variant.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-26 22:34:35 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-26 22:34:35 +0200
commitd40d196a777666206f39094c39956bb654b9b64c (patch)
treeca98806117ac68198554897e0dd51a68eef41915 /src/lib/variant.cc
parent8fcadb1b9b2afc4994e03377105b92cae4eb54a1 (diff)
Allow branding of "report a problem" dialog.
Diffstat (limited to 'src/lib/variant.cc')
-rw-r--r--src/lib/variant.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc
index f1c2af17b..00e9ab991 100644
--- a/src/lib/variant.cc
+++ b/src/lib/variant.cc
@@ -40,6 +40,7 @@ static char const* _report_problem_email = "carl@dcpomatic.com";
static bool const _show_tagline = true;
static bool const _show_dcpomatic_website = true;
+static bool const _show_report_a_problem = false;
std::string
@@ -150,6 +151,12 @@ variant::show_dcpomatic_website()
return _show_dcpomatic_website;
}
+bool
+variant::show_report_a_problem()
+{
+ return _show_report_a_problem;
+}
+
std::string
variant::report_problem_email()
{