Skip to content

Commit

Permalink
fix #14545
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Mar 21, 2024
1 parent 462e137 commit 62236fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/guisim/GUILane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,8 @@ GUILane::drawGL(const GUIVisualizationSettings& s) const {
if (mustDrawMarkings && drawDetails && s.laneShowBorders) { // needs matrix reset
drawMarkings(s, exaggeration);
}
if (drawDetails && isInternal && s.showBikeMarkings && myPermissions == SVC_BICYCLE && exaggeration == 1.0 && s.showLinkDecals && s.laneShowBorders && !hiddenBidi) {
if (drawDetails && isInternal && s.showBikeMarkings && myPermissions == SVC_BICYCLE && exaggeration == 1.0 && s.showLinkDecals && s.laneShowBorders && !hiddenBidi
&& getNormalSuccessorLane()->getPermissions() == SVC_BICYCLE && getNormalPredecessorLane()->getPermissions() == SVC_BICYCLE) {
drawBikeMarkings();
}
if (drawDetails && isInternal && exaggeration == 1.0 && s.showLinkDecals && s.laneShowBorders && !hiddenBidi && myIndex > 0
Expand Down

0 comments on commit 62236fa

Please sign in to comment.