mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
Bugfix: GUI: Help messages already have a trailing newline, so don't add an extra one
This commit is contained in:
parent
8afa602f30
commit
d1ed09a764
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ HelpMessageDialog::~HelpMessageDialog()
|
|||
void HelpMessageDialog::printToConsole()
|
||||
{
|
||||
// On other operating systems, the expected action is to print the message to the console.
|
||||
tfm::format(std::cout, "%s\n", qPrintable(text));
|
||||
tfm::format(std::cout, "%s", qPrintable(text));
|
||||
}
|
||||
|
||||
void HelpMessageDialog::showOrPrint()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue