diff --git a/OsmAnd/res/drawable-hdpi/progress_orange.png b/OsmAnd/res/drawable-hdpi/progress_orange.png new file mode 100644 index 0000000000..9def7fc4b6 Binary files /dev/null and b/OsmAnd/res/drawable-hdpi/progress_orange.png differ diff --git a/OsmAnd/res/drawable-large/progress_orange.png b/OsmAnd/res/drawable-large/progress_orange.png new file mode 100644 index 0000000000..9def7fc4b6 Binary files /dev/null and b/OsmAnd/res/drawable-large/progress_orange.png differ diff --git a/OsmAnd/res/drawable-mdpi/progress_orange.png b/OsmAnd/res/drawable-mdpi/progress_orange.png new file mode 100644 index 0000000000..94332e27a9 Binary files /dev/null and b/OsmAnd/res/drawable-mdpi/progress_orange.png differ diff --git a/OsmAnd/src/net/osmand/plus/AsyncLoadingThread.java b/OsmAnd/src/net/osmand/plus/AsyncLoadingThread.java index 521004fdb3..076a12bfab 100644 --- a/OsmAnd/src/net/osmand/plus/AsyncLoadingThread.java +++ b/OsmAnd/src/net/osmand/plus/AsyncLoadingThread.java @@ -60,7 +60,7 @@ public class AsyncLoadingThread extends Thread { if (resourceManger.getMapTileDownloader() != null && resourceManger.getMapTileDownloader().isSomethingBeingDownloaded()) { progress = BusyIndicator.STATUS_GREEN; } else if (resourceManger.getContext().getRoutingHelper().isRouteBeingCalculated()) { - progress = BusyIndicator.STATUS_BLUE; + progress = BusyIndicator.STATUS_ORANGE; } else if (!requests.isEmpty()) { progress = BusyIndicator.STATUS_BLACK; } else if (poiLoadRequest != null && poiLoadRequest.isRunning()) { diff --git a/OsmAnd/src/net/osmand/plus/BusyIndicator.java b/OsmAnd/src/net/osmand/plus/BusyIndicator.java index 9c199c8808..0e10f6c3bb 100644 --- a/OsmAnd/src/net/osmand/plus/BusyIndicator.java +++ b/OsmAnd/src/net/osmand/plus/BusyIndicator.java @@ -17,7 +17,7 @@ public class BusyIndicator { public static final int STATUS_INVISIBLE = 0; public static final int STATUS_GREEN = 1; - public static final int STATUS_BLUE = 2; + public static final int STATUS_ORANGE = 2; public static final int STATUS_BLACK = 3; public BusyIndicator(Context ctx, View bar){ @@ -45,8 +45,8 @@ public class BusyIndicator { final Drawable drawable; if(this.status == STATUS_BLACK){ drawable = ctx.getResources().getDrawable(R.drawable.progress_grey); - } else if(this.status == STATUS_BLUE){ - drawable = ctx.getResources().getDrawable(R.drawable.progress_blue); + } else if(this.status == STATUS_ORANGE){ + drawable = ctx.getResources().getDrawable(R.drawable.progress_orange); } else if(this.status == STATUS_GREEN){ drawable = ctx.getResources().getDrawable(R.drawable.progress_green); } else {