diff --git a/OsmAnd/res/drawable-hdpi/list_stop_sign.png b/OsmAnd/res/drawable-hdpi/list_stop_sign.png index 7d0831dfc4..ebd4ebfe66 100644 Binary files a/OsmAnd/res/drawable-hdpi/list_stop_sign.png and b/OsmAnd/res/drawable-hdpi/list_stop_sign.png differ diff --git a/OsmAnd/res/drawable-hdpi/warnings_stop_sign.png b/OsmAnd/res/drawable-hdpi/warnings_stop_sign.png index 49944cc90a..ad527966cf 100644 Binary files a/OsmAnd/res/drawable-hdpi/warnings_stop_sign.png and b/OsmAnd/res/drawable-hdpi/warnings_stop_sign.png differ diff --git a/OsmAnd/src/net/osmand/plus/views/mapwidgets/RouteInfoWidgetsFactory.java b/OsmAnd/src/net/osmand/plus/views/mapwidgets/RouteInfoWidgetsFactory.java index b366039b63..777d6ac334 100644 --- a/OsmAnd/src/net/osmand/plus/views/mapwidgets/RouteInfoWidgetsFactory.java +++ b/OsmAnd/src/net/osmand/plus/views/mapwidgets/RouteInfoWidgetsFactory.java @@ -681,6 +681,7 @@ public class RouteInfoWidgetsFactory { text = ""; } else if(alarm.getType() == AlarmInfoType.BORDER_CONTROL) { locimgId = R.drawable.warnings_border_control; + text = ""; //text = "CLO"; } else if(alarm.getType() == AlarmInfoType.TOLL_BOOTH) { text = "$"; @@ -689,8 +690,8 @@ public class RouteInfoWidgetsFactory { text = ""; } else if(alarm.getType() == AlarmInfoType.STOP) { locimgId = R.drawable.warnings_stop_sign; + text = ""; //text = "STOP"; - //text = ""; } visible = (text != null && text.length() > 0) || locimgId != 0; if (visible) {