diff --git a/src/Gui/propertyeditor/PropertyItem.cpp b/src/Gui/propertyeditor/PropertyItem.cpp index 21c2543d7f..1e1067f8bf 100644 --- a/src/Gui/propertyeditor/PropertyItem.cpp +++ b/src/Gui/propertyeditor/PropertyItem.cpp @@ -2951,6 +2951,7 @@ QWidget* PropertyEnumItem::createEditor(QWidget* parent, const QObject* receiver QComboBox *cb = new QComboBox(parent); cb->setFrame(false); cb->setDisabled(isReadOnly()); + cb->addItems(commonModes); QObject::connect(cb, SIGNAL(activated(int)), receiver, method); return cb; }