Skip to content

Commit

Permalink
add default value ref #14323
Browse files Browse the repository at this point in the history
Signed-off-by: m-kro <m.barthauer@t-online.de>
  • Loading branch information
m-kro committed Feb 19, 2024
1 parent 874b36b commit dc71733
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/netedit/elements/GNEAttributeCarrier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1876,8 +1876,9 @@ GNEAttributeCarrier::fillAdditionalElements() {
myTagProperties[currentTag].addAttribute(attrProperty);

attrProperty = GNEAttributeProperties(SUMO_ATTR_PARKING_AREA,
GNEAttributeProperties::STRING | GNEAttributeProperties::UPDATEGEOMETRY,
TL("Parking area the charging station is located"));
GNEAttributeProperties::STRING | GNEAttributeProperties::UPDATEGEOMETRY | GNEAttributeProperties::DEFAULTVALUE,
TL("Parking area the charging station is located"),
"");
myTagProperties[currentTag].addAttribute(attrProperty);
}
currentTag = SUMO_TAG_PARKING_AREA;
Expand Down

0 comments on commit dc71733

Please sign in to comment.