Skip to content

Commit

Permalink
Change [code] to ``` as code tag don't recognize and user need manual…
Browse files Browse the repository at this point in the history
…ly correct tag.
  • Loading branch information
Kuzma30 committed Oct 29, 2023
1 parent 410d4f9 commit f9f7f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/Splashscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,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;
Expand Down Expand Up @@ -881,7 +881,7 @@ void AboutDialog::copyToClipboard()
}
}

str << "[/code]\n";
str << "```\n";
QClipboard* cb = QApplication::clipboard();
cb->setText(data);
}
Expand Down

0 comments on commit f9f7f8c

Please sign in to comment.