From 8f1dbe9f3546d685aca84a12476d564a04eeb7aa Mon Sep 17 00:00:00 2001 From: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> Date: Thu, 3 Oct 2024 09:48:50 +0200 Subject: [PATCH] Resize columns to contents in notifications window (#2128) --- src/problemsdialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/problemsdialog.cpp b/src/problemsdialog.cpp index 3a82a0cf8..1b049fcdf 100644 --- a/src/problemsdialog.cpp +++ b/src/problemsdialog.cpp @@ -16,6 +16,7 @@ ProblemsDialog::ProblemsDialog(const PluginContainer& pluginContainer, QWidget* m_hasProblems(false) { ui->setupUi(this); + ui->problemsWidget->header()->setSectionResizeMode(QHeaderView::ResizeToContents); runDiagnosis();