Stop AboutDlg from being resizable

This commit is contained in:
VoxelTek 2025-06-18 19:52:03 +10:00
parent b2d8141047
commit 55c6173cc0

View File

@ -14,4 +14,5 @@ CAboutDialog::CAboutDialog() : QDialog()
{ {
m_ui = new Ui::AboutDialog; m_ui = new Ui::AboutDialog;
m_ui->setupUi(this); m_ui->setupUi(this);
layout()->setSizeConstraint( QLayout::SetFixedSize );
} }