Skip to content

Commit

Permalink
Properly stylize the application name (#3775)
Browse files Browse the repository at this point in the history
This is just a cosmetic change. On KDE Plasma, the title of the tray icon is set by either the name of the binary, or by calling `setApplicationName()`. So having it properly stylized looks better.
  • Loading branch information
guihkx authored and phoerious committed Nov 8, 2019
1 parent f9097c8 commit 6339d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int main(int argc, char** argv)
#endif

Application app(argc, argv);
Application::setApplicationName("keepassxc");
Application::setApplicationName("KeePassXC");
Application::setApplicationVersion(KEEPASSXC_VERSION);
// don't set organizationName as that changes the return value of
// QStandardPaths::writableLocation(QDesktopServices::DataLocation)
Expand Down

0 comments on commit 6339d61

Please sign in to comment.