From 490b25b73be35cbfdb48a63a10e735e9c1682ef7 Mon Sep 17 00:00:00 2001 From: Chris Witterholt Date: Sat, 23 Mar 2024 20:50:00 +0000 Subject: [PATCH] Fix unintentional change of the organization name by the domain name. --- openlp/core/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/app.py b/openlp/core/app.py index 74978fd1b..552c2e8b4 100644 --- a/openlp/core/app.py +++ b/openlp/core/app.py @@ -502,7 +502,7 @@ def main(): app = OpenLP() Registry.create() QtWidgets.QApplication.setOrganizationName('OpenLP') - QtWidgets.QApplication.setOrganizationName('openlp.org') + QtWidgets.QApplication.setOrganizationDomain('openlp.org') if args.portable: # This has to be done here so that we can load the settings before instantiating the application object portable_path, settings = setup_portable_settings(args.portablepath)