Skip to content

Commit

Permalink
Fix the name of the autostart entry
Browse files Browse the repository at this point in the history
When "Start Peercoin on system login" is selected, the created autostart entry should not be called "Bitcoin".
  • Loading branch information
jondo committed Sep 20, 2018
1 parent 21f01b9 commit 2b8ac71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/guiutil.cpp
Expand Up @@ -421,7 +421,7 @@ bool SetStartOnSystemStartup(bool fAutoStart)
// Write a bitcoin.desktop file to the autostart directory:
optionFile << "[Desktop Entry]\n";
optionFile << "Type=Application\n";
optionFile << "Name=Bitcoin\n";
optionFile << "Name=Peercoin\n";
optionFile << "Exec=" << pszExePath << " -min\n";
optionFile << "Terminal=false\n";
optionFile << "Hidden=false\n";
Expand Down

0 comments on commit 2b8ac71

Please sign in to comment.