We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be7bca commit 05051f2Copy full SHA for 05051f2
src/guisim/GUIBaseVehicle.cpp
@@ -677,10 +677,10 @@ GUIBaseVehicle::drawGLAdditional(GUISUMOAbstractView* const parent, const GUIVis
677
}
678
bool noLoop = hasActiveAddVisualisation(parent, VO_SHOW_ROUTE_NOLOOP);
679
if (hasActiveAddVisualisation(parent, VO_SHOW_ROUTE)) {
680
- drawRoute(s, 0, 0.25, false, noLoop);
+ drawRoute(s, 0, 0.15, false, noLoop);
681
682
if (hasActiveAddVisualisation(parent, VO_SHOW_FUTURE_ROUTE)) {
683
- drawRoute(s, 0, 0.25, true, noLoop);
+ drawRoute(s, 0, 0.15, true, noLoop);
684
685
if (hasActiveAddVisualisation(parent, VO_SHOW_ALL_ROUTES)) {
686
if (myVehicle.getNumberReroutes() > 0) {
@@ -690,7 +690,7 @@ GUIBaseVehicle::drawGLAdditional(GUISUMOAbstractView* const parent, const GUIVis
690
drawRoute(s, i, darken);
691
692
} else {
693
694
695
696
if (hasActiveAddVisualisation(parent, VO_SHOW_LFLINKITEMS)) {
src/guisim/GUIVehicle.cpp
@@ -326,7 +326,7 @@ GUIVehicle::drawAction_drawLinkItems(const GUIVisualizationSettings& s) const {
326
void
327
GUIVehicle::drawAction_drawCarriageClass(const GUIVisualizationSettings& s, double scaledLength, bool asImage) const {
328
RGBColor current = GLHelper::getColor();
329
- RGBColor darker = current.changedBrightness(-51);
+ RGBColor darker = current.changedBrightness(-20);
330
const double exaggeration = (s.vehicleSize.getExaggeration(s, this)
331
* s.vehicleScaler.getScheme().getColor(getScaleValue(s, s.vehicleScaler.getActive())));
332
if (exaggeration == 0) {
0 commit comments