Tweak region downloads fill from basemap
This commit is contained in:
parent
1ca1d687c7
commit
066a6e75f7
2 changed files with 5 additions and 4 deletions
|
@ -174,7 +174,8 @@
|
|||
<color name="dialog_inactive_text_color_dark">#78909c</color>
|
||||
|
||||
<!-- DownloadedRegionsLayer -->
|
||||
<color name="region_uptodate">#6632C832</color>
|
||||
<color name="region_updateable">#66FF8F00</color>
|
||||
<color name="region_selected">#66FFFF00</color>
|
||||
<color name="region_uptodate">#5532C832</color>
|
||||
<color name="region_updateable">#55FF8F00</color>
|
||||
<color name="region_selected">#55FFFF00</color>
|
||||
<color name="region_downloading">#44FF61FF</color>
|
||||
</resources>
|
|
@ -106,7 +106,7 @@ public class DownloadedRegionsLayer extends OsmandMapLayer implements IContextMe
|
|||
|
||||
paintDownloaded = getPaint(view.getResources().getColor(R.color.region_uptodate));
|
||||
paintSelected = getPaint(view.getResources().getColor(R.color.region_selected));
|
||||
paintDownloading = getPaint(Color.argb(40, 50, 200, 50));
|
||||
paintDownloading = getPaint(view.getResources().getColor(R.color.region_downloading));
|
||||
paintOutdated = getPaint(view.getResources().getColor(R.color.region_updateable));
|
||||
|
||||
textPaint = new TextPaint();
|
||||
|
|
Loading…
Reference in a new issue