Merge 29658 via fix_qt_help_on_console_x_newline

This commit is contained in:
Luke Dashjr 2024-03-25 17:26:53 +00:00
commit 0da1f69b92

View File

@ -116,7 +116,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()