Change folder icon color
This commit is contained in:
parent
10c7fe2809
commit
6b0250d892
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue