[client] Interface properties now have a dropdown control, more user friendly

Dieser Commit ist enthalten in:
Reinder Feenstra 2025-10-26 23:44:01 +01:00
Ursprung f7d11f94a3
Commit a6c26da659

Datei anzeigen

@ -32,6 +32,7 @@
#include "../interfaceitemnamelabel.hpp"
#include "../propertycheckbox.hpp"
#include "../propertycombobox.hpp"
#include "../objectpropertycombobox.hpp"
#include "../propertyspinbox.hpp"
#include "../propertydoublespinbox.hpp"
#include "../propertylineedit.hpp"
@ -107,6 +108,10 @@ void ObjectEditWidget::buildForm()
tabs.append(new ObjectEditWidget(*property, this));
continue;
}
else if(property->name() == "interface")
{
w = new ObjectPropertyComboBox(*property, this);
}
else
{
w = new PropertyObjectEdit(*property, this);