diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index 82f66f4b11..4fa0e28aef 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -808,7 +808,7 @@ void AboutDialog::copyToClipboard() deskInfo = QLatin1String(" (") + deskEnv + QLatin1String("/") + deskSess + QLatin1String(")"); } - str << "[code]\n"; + str << "```\n"; str << "OS: " << prettyProductInfoWrapper() << deskInfo << '\n'; str << "Word size of " << exe << ": " << QSysInfo::WordSize << "-bit\n"; str << "Version: " << major << "." << minor << "." << point << suffix << "." << build; @@ -889,7 +889,7 @@ void AboutDialog::copyToClipboard() } } - str << "[/code]\n"; + str << "```\n"; QClipboard* cb = QApplication::clipboard(); cb->setText(data); }