Skip to content

Commit

Permalink
Fixed #14327
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Feb 18, 2024
1 parent dfd7b3a commit 5991308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netedit/elements/network/GNELane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ GNELane::DrawingConstants::update(const GUIVisualizationSettings& s) {
myInternalDrawingWidth = myDrawingWidth - (2 * SUMO_const_laneMarkWidth);
}
// check if draw superposed
myDrawSuperposed = myDrawAsRailway || (s.spreadSuperposed && myLane->getParentEdge()->getNBEdge()->isBidiRail());
myDrawSuperposed = (s.spreadSuperposed && myLane->getParentEdge()->getNBEdge()->isBidiRail());
// adjust parameters depending of superposing
if (myDrawSuperposed) {
// apply offset
Expand Down

0 comments on commit 5991308

Please sign in to comment.