Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hsuan Yen <yan12125@gmail.com>2021-01-11 16:51:10 +0300
committerJonathan White <support@dmapps.us>2021-01-11 19:26:54 +0300
commit7078086b50fc32a2aeec9ff224de4d47d39ed185 (patch)
tree42db0ab816a0063f9539b1cbea91a480008765b5 /src/gui/osutils
parent618c1166ce87c8cf2c901c9948f130a02c5ea2bf (diff)
Fix autostart .desktop file
It had "Version=1.0true", which seems wrong
Diffstat (limited to 'src/gui/osutils')
-rw-r--r--src/gui/osutils/nixutils/NixUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/osutils/nixutils/NixUtils.cpp b/src/gui/osutils/nixutils/NixUtils.cpp
index a5e023f2d..769166fe0 100644
--- a/src/gui/osutils/nixutils/NixUtils.cpp
+++ b/src/gui/osutils/nixutils/NixUtils.cpp
@@ -104,7 +104,7 @@ void NixUtils::setLaunchAtStartup(bool enable)
<< QStringLiteral("StartupNotify=true") << '\n'
<< QStringLiteral("Terminal=false") << '\n'
<< QStringLiteral("Type=Application") << '\n'
- << QStringLiteral("Version=1.0") << "true" << '\n'
+ << QStringLiteral("Version=1.0") << '\n'
<< QStringLiteral("Categories=Utility;Security;Qt;") << '\n'
<< QStringLiteral("MimeType=application/x-keepass2;") << '\n'
<< QStringLiteral("X-GNOME-Autostart-enabled=true") << '\n'