Change folder icon color

This commit is contained in:
PavelRatushny 2017-12-27 17:40:00 +02:00
parent 10c7fe2809
commit 6b0250d892
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ public class FavouritePointMenuController extends MenuController {
@Override @Override
public Drawable getSecondLineTypeIcon() { public Drawable getSecondLineTypeIcon() {
return getIcon(R.drawable.ic_action_group_name_16); return getIcon(R.drawable.ic_action_group_name_16, isLight() ? R.color.icon_color : R.color.ctx_menu_bottom_view_icon_dark);
} }
@Override @Override

View file

@ -86,7 +86,7 @@ public class WptPtMenuController extends MenuController {
if (Algorithms.isEmpty(getSubtypeStr())) { if (Algorithms.isEmpty(getSubtypeStr())) {
return null; return null;
} else { } else {
return getIcon(R.drawable.ic_action_group_name_16); return getIcon(R.drawable.ic_action_group_name_16, isLight() ? R.color.icon_color : R.color.ctx_menu_bottom_view_icon_dark);
} }
} }