From a76ed9412021214362ea34e6ee415687d04af654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Fri, 24 Jan 2025 10:45:54 +0100 Subject: [PATCH] AboutDialog: Disable resizing the About window --- Source/Core/DolphinQt/AboutDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/AboutDialog.cpp b/Source/Core/DolphinQt/AboutDialog.cpp index 8bd03c5b4b..73cfde11ee 100644 --- a/Source/Core/DolphinQt/AboutDialog.cpp +++ b/Source/Core/DolphinQt/AboutDialog.cpp @@ -100,6 +100,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) QHBoxLayout* h_layout = new QHBoxLayout; setLayout(main_layout); + main_layout->setSizeConstraint(QLayout::SetFixedSize); main_layout->addLayout(h_layout); main_layout->addWidget(copyright); copyright->setAlignment(Qt::AlignCenter);