From 459a8bc4c80ed98fddb6f1e9d3db300ccd1941bf Mon Sep 17 00:00:00 2001 From: Pieter Hijma Date: Wed, 3 Sep 2025 15:33:45 +0200 Subject: [PATCH] Gui: Adjust size of the Add Property dialog --- src/Gui/Dialogs/DlgAddProperty.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Gui/Dialogs/DlgAddProperty.cpp b/src/Gui/Dialogs/DlgAddProperty.cpp index fe7a827188..c1d80fb90b 100644 --- a/src/Gui/Dialogs/DlgAddProperty.cpp +++ b/src/Gui/Dialogs/DlgAddProperty.cpp @@ -514,6 +514,8 @@ void DlgAddProperty::initializeWidgets(ViewProviderVarSet* viewProvider) QWidget::setTabOrder(ui->lineEditName, &comboBoxGroup); QWidget::setTabOrder(&comboBoxGroup, ui->comboBoxType); + + adjustSize(); } bool DlgAddProperty::propertyExists(const std::string& name)