diff --git a/OsmAnd/res/drawable-hdpi/ic_action_layers_dark.png b/OsmAnd/res/drawable-hdpi/ic_action_layers_dark.png
deleted file mode 100644
index a8ccd251cd..0000000000
Binary files a/OsmAnd/res/drawable-hdpi/ic_action_layers_dark.png and /dev/null differ
diff --git a/OsmAnd/res/drawable-mdpi/ic_action_layers_dark.png b/OsmAnd/res/drawable-mdpi/ic_action_layers_dark.png
deleted file mode 100644
index 39ef27bd81..0000000000
Binary files a/OsmAnd/res/drawable-mdpi/ic_action_layers_dark.png and /dev/null differ
diff --git a/OsmAnd/res/drawable-xhdpi/ic_action_layers_dark.png b/OsmAnd/res/drawable-xhdpi/ic_action_layers_dark.png
deleted file mode 100644
index 071e60ec38..0000000000
Binary files a/OsmAnd/res/drawable-xhdpi/ic_action_layers_dark.png and /dev/null differ
diff --git a/OsmAnd/res/drawable-xxhdpi/ic_action_layers_dark.png b/OsmAnd/res/drawable-xxhdpi/ic_action_layers_dark.png
deleted file mode 100644
index 76900094c1..0000000000
Binary files a/OsmAnd/res/drawable-xxhdpi/ic_action_layers_dark.png and /dev/null differ
diff --git a/OsmAnd/res/drawable/ic_action_layers.xml b/OsmAnd/res/drawable/ic_action_layers.xml
new file mode 100644
index 0000000000..123175a349
--- /dev/null
+++ b/OsmAnd/res/drawable/ic_action_layers.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/OsmAnd/res/xml/configure_profile.xml b/OsmAnd/res/xml/configure_profile.xml
index 4d0f997500..938f77077a 100644
--- a/OsmAnd/res/xml/configure_profile.xml
+++ b/OsmAnd/res/xml/configure_profile.xml
@@ -34,7 +34,7 @@
android:persistent="false"
android:summary="@string/map_look_descr"
android:title="@string/configure_map"
- tools:icon="@drawable/ic_action_layers_dark" />
+ tools:icon="@drawable/ic_action_layers" />
adapter, int itemId, int pos, boolean isChecked, int[] viewCoordinates) {
@@ -943,7 +943,7 @@ public class MapActivityActions implements DialogProvider {
/*
optionsMenuHelper.addItem(new ContextMenuItem.ItemBuilder().setTitleId(R.string.configure_map, mapActivity)
- .setIcon(R.drawable.ic_action_layers_dark)
+ .setIcon(R.drawable.ic_action_layers)
.setListener(new ContextMenuAdapter.ItemClickListener() {
@Override
public boolean onContextMenuClick(ArrayAdapter adapter, int itemId, int pos, boolean isChecked) {
diff --git a/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java b/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java
index 280a24b042..5cfc3d6429 100644
--- a/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java
+++ b/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java
@@ -840,7 +840,7 @@ public class ConfigureMapMenu {
if (props != null) {
adapter.addItem(props);
}
- props = createProperties(customRules, null, R.string.rendering_category_details, R.drawable.ic_action_layers_dark,
+ props = createProperties(customRules, null, R.string.rendering_category_details, R.drawable.ic_action_layers,
"details", null, adapter, activity, true, DETAILS_ID, themeRes, nightMode, selectedProfileColor);
if (props != null) {
adapter.addItem(props);
diff --git a/OsmAnd/src/net/osmand/plus/settings/ConfigureProfileFragment.java b/OsmAnd/src/net/osmand/plus/settings/ConfigureProfileFragment.java
index f3c11e3819..d87f5f4d32 100644
--- a/OsmAnd/src/net/osmand/plus/settings/ConfigureProfileFragment.java
+++ b/OsmAnd/src/net/osmand/plus/settings/ConfigureProfileFragment.java
@@ -244,7 +244,7 @@ public class ConfigureProfileFragment extends BaseSettingsFragment implements Co
return;
}
Preference configureMap = findPreference(CONFIGURE_MAP);
- configureMap.setIcon(getContentIcon(R.drawable.ic_action_layers_dark));
+ configureMap.setIcon(getContentIcon(R.drawable.ic_action_layers));
Intent intent = new Intent(ctx, MapActivity.class);
intent.putExtra(OPEN_CONFIG_ON_MAP, MAP_CONFIG);