Skip to content

Commit

Permalink
Now vType can be edited thought a comboBox (Broken in 1f1a74a). Refs #…
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Jan 8, 2025
1 parent 8afba4e commit 9160afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netedit/frames/GNEAttributesEditorRow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ GNEAttributesEditorRow::showAttributeRow(const GNEAttributeProperties& attrPrope
// continue depending of type of attribute
if (attrProperty.isBool()) {
showValueCheckButton(value, attributeEnabled, computedAttribute);
} else if (attrProperty.isDiscrete()) {
} else if (attrProperty.isDiscrete() || attrProperty.isVType()) {
showValueComboBox(attrProperty, value, attributeEnabled, computedAttribute);
} else {
showValueString(value, attributeEnabled, computedAttribute);
Expand Down

0 comments on commit 9160afd

Please sign in to comment.