From 00abb02ac1adc241de6086f922eced90c2ac5002 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Mon, 3 Apr 2023 21:31:07 +0200 Subject: [PATCH] Add the desktopFileName setting to the application for better support for Linux desktops --- novelwriter/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index ea2b02a5..6ad9fca5 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -246,6 +246,8 @@ def main(sysArgs=None): nwApp.setApplicationName(CONFIG.appName) nwApp.setApplicationVersion(__version__) nwApp.setOrganizationDomain(__domain__) + nwApp.setOrganizationName(__domain__) + nwApp.setDesktopFileName(CONFIG.appName) # Connect the exception handler before making the main GUI sys.excepthook = exceptionHandler