Fix for missing XML tag

This commit is contained in:
GaidamakUA 2015-11-23 16:08:55 +02:00
parent 388b1a9214
commit 1ca1d687c7
2 changed files with 9 additions and 1 deletions

View file

@ -30,6 +30,14 @@
android:background="@android:color/transparent"
android:src="@drawable/ic_action_delete_dark"/>
<ImageButton
android:id="@+id/ok_button"
android:layout_width="?attr/actionBarSize"
android:layout_height="match_parent"
android:layout_gravity="right"
android:background="@android:color/transparent"
android:src="@drawable/ic_action_done"/>
<Button
android:id="@+id/save_button"
android:layout_width="wrap_content"

View file

@ -105,7 +105,7 @@ public class DownloadedRegionsLayer extends OsmandMapLayer implements IContextMe
osmandRegions = rm.getOsmandRegions();
paintDownloaded = getPaint(view.getResources().getColor(R.color.region_uptodate));
paintSelected = getPaint(view.getResources().getColor(R.color.region_selected);
paintSelected = getPaint(view.getResources().getColor(R.color.region_selected));
paintDownloading = getPaint(Color.argb(40, 50, 200, 50));
paintOutdated = getPaint(view.getResources().getColor(R.color.region_updateable));