From 55c6173cc0524a36578959daef3ca2d45cb860b2 Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Wed, 18 Jun 2025 19:52:03 +1000 Subject: [PATCH] Stop AboutDlg from being resizable --- CONFIG/AboutDlg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/CONFIG/AboutDlg.cpp b/CONFIG/AboutDlg.cpp index b2c14eca..7aa698c1 100644 --- a/CONFIG/AboutDlg.cpp +++ b/CONFIG/AboutDlg.cpp @@ -14,4 +14,5 @@ CAboutDialog::CAboutDialog() : QDialog() { m_ui = new Ui::AboutDialog; m_ui->setupUi(this); + layout()->setSizeConstraint( QLayout::SetFixedSize ); }