Remove unnecessary localization

This commit is contained in:
Megamouse 2025-03-20 01:48:58 +01:00
parent 806c9230cd
commit 8f3eff293d
4 changed files with 5 additions and 5 deletions

View file

@ -917,7 +917,7 @@ bool main_window::InstallPackages(QStringList file_paths, bool from_boot)
if (!info.changelog.isEmpty())
{
mb.setInformativeText(tr("To see the changelog, please click \"Show Details\"."));
mb.setDetailedText(tr("%0").arg(info.changelog));
mb.setDetailedText(info.changelog);
// Smartass hack to make the unresizeable message box wide enough for the changelog
const int log_width = QLabel(info.changelog).sizeHint().width();